/* Matches the app's typeset-document look: system serif, comfortable measure,
   subtle links. No web fonts, no framework - same rules as the app itself. */
:root {
  color-scheme: light;
}

body {
  font-family: 'Iowan Old Style', Palatino, 'Palatino Linotype', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 1.25rem 5rem;
  color: #1a1a1a;
  background: #fdfdfb;
}

h1 {
  font-size: 1.9rem;
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

h2 {
  font-size: 1.25rem;
  margin-top: 2.5rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #e2e0da;
}

.tagline {
  color: #6b6b6b;
  margin-top: 0;
}

a {
  color: inherit;
}

a:visited {
  color: inherit;
}

nav {
  margin-top: 3.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e0da;
  font-size: 0.92rem;
  color: #6b6b6b;
}

.updated {
  font-size: 0.92rem;
  color: #6b6b6b;
}

@media (prefers-color-scheme: dark) {
  :root { color-scheme: dark; }
  body { color: #e8e6e1; background: #16161a; }
  h2, nav { border-color: #33333a; }
  .tagline, .updated, nav { color: #9a9890; }
}
