:root {
  --bg: #fbfaf8;
  --fg: #1a1917;
  --muted: #6b6862;
  --rule: #e3ded6;
  --accent: #9a5b3a;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #131211;
    --fg: #f2efe9;
    --muted: #918c84;
    --rule: #2c2a27;
    --accent: #d99a6f;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: ui-serif, Georgia, "Iowan Old Style", "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
  display: grid;
  place-items: center;
  padding: 2rem;
}

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

.eyebrow {
  margin: 0 0 1.75rem;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 9vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.lede {
  margin: 1.25rem 0 0;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted);
}

.foot {
  margin: 3rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

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