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

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: #f5f5f5;
  color: #2d2d2d;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  width: 100%;
  padding: 2rem;
}

.container {
  max-width: 600px;
  margin: 0 auto;
}

/* Header */

h1 {
  font-size: 3rem;
  font-weight: normal;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #2d2d2d;
}

.title {
  margin-top: 0.4rem;
  font-size: 1rem;
  font-family: sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #767676;
}

/* Bio */

.bio {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #ccc;
}

.bio p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2d2d2d;
}

/* Links */

.links {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
}

.links a {
  font-family: sans-serif;
  font-size: 0.9rem;
  color: #6196cc;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.links a:hover {
  color: #67cdcc;
}
