:root {
  --bg: #fbf9f6;
  --text: #222222;
  --text-muted: #666666;
  --border: #e2ded8;
  --card-bg: #ffffff;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #141413;
    --text: #e6e4df;
    --text-muted: #99968f;
    --border: #2a2927;
    --card-bg: #1c1b1a;
  }
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 1.5rem 1.5rem;
  line-height: 1.7;
}

.container {
  max-width: 540px;
  width: 100%;
  text-align: center;
  margin: auto;
}

.avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.bio {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.socials a {
  color: var(--text);
  font-size: 1.35rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.socials a:hover {
  opacity: 0.6;
  transform: translateY(-2px);
}

footer {
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  width: 100%;
  max-width: 540px;
  text-align: center;
}

footer a {
  color: var(--text);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (prefers-color-scheme: dark) {
  body {
    color: #dcdcdc;
    background-color: #151617;
  }

  img {
    filter: grayscale(100%);
    /*opacity: 0.8;*/
  }
}