/* ---- light / dark palette ----
   To switch, comment out one :root block and uncomment the other. */

:root {
  --bg: #fafaf7;
  --fg: #1a1a1a;
  --muted: #666;
  --link: #1a1a1a;
}

/* :root {
  --bg: #15140f;
  --fg: #ebe9e2;
  --muted: #999;
  --link: #ebe9e2;
} */

/* ---- type & layout ---- */

html {
  font-size: 18px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.55;
  max-width: 36rem;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

h1 {
  font-family: "Playwrite GB J", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 1.2;
  margin: 0 0 2.5rem;
}

p {
  margin: 0 0 1.25rem;
}

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

footer {
  margin-top: 5rem;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
