:root {
  --bg: #fbfbfc;
  --text: #16181d;
  --accent: #7a2331;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e1016;
    --text: #edeef0;
    --accent: #b85e67;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--text);
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 560px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.bio {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--text);
}

.bio:last-of-type {
  margin-bottom: 2rem;
}

.bio a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.bio a:hover {
  opacity: 0.7;
}