* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  padding: 40px;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.name {
  font-weight: 600;
}

.tags {
  font-weight: 400;
}

.hero {
  text-align: center;
  margin-top: 10vh;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.bio {
  margin-top: 40px;
  font-size: 0.9rem;
  text-align: center;
  color: #aaa;
  line-height: 1.6;
}

footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  opacity: 0.6;
  border-top: 1px solid #222;
  padding-top: 20px;
  margin-top: 60px;
}

footer .links a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}

footer .links a:hover {
  opacity: 1;
}
