:root {
  --ink: #16181d;
  --muted: #5c6270;
  --bg: #fbfaf7;
  --rule: #e3e0d8;
  --link: #1d4ed8;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #eceef2;
    --muted: #9aa1af;
    --bg: #16181d;
    --rule: #2c3038;
    --link: #8ab4ff;
  }
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 2rem 1.5rem;
  background: var(--bg);
  color: var(--ink);
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.6;
}

main {
  max-width: 34rem;
  width: 100%;
  text-align: center;
}

h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.25rem, 8vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.tagline {
  margin: 0 auto 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
  font-style: italic;
}

.body {
  margin: 0 0 1rem;
}

a {
  color: var(--link);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

footer {
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

footer p {
  margin: 0;
}
