/* One stylesheet, no fonts fetched, no scripts, nothing third party.
   A privacy policy served from a page that calls out to Google for a webfont
   is a page that hands somebody's address to Google in order to tell them we
   do not do that. */
:root { color-scheme: light dark; }
* { box-sizing: border-box; }
body {
  font: 17px/1.7 -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  max-width: 44rem; margin: 0 auto; padding: 3rem 1.5rem 6rem;
  color: #1c1a18; background: #faf6ee;
}
h1, h2, .word { font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif; }
h1 { font-size: 2.6rem; line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 .4rem; }
h2 { font-size: 1.3rem; margin: 2.6rem 0 .6rem; }
.lede { font-size: 1.2rem; color: #6f6559; margin-top: 0; }
.meta { color: #8d8377; font-size: .9rem; }
a { color: #9a4a28; }
ul { padding-left: 1.15rem; }
li { margin: .35rem 0; }
hr { border: 0; border-top: 1px solid #e4dbcc; margin: 3rem 0; }
nav { margin-bottom: 2.5rem; }
nav a { margin-right: 1.2rem; text-decoration: none; font-size: .95rem; }
.word { font-size: 1.35rem; font-weight: 700; text-decoration: none; color: #1c1a18; }
.big { font-size: 1.35rem; line-height: 1.6; }
footer { margin-top: 4rem; color: #8d8377; font-size: .9rem; }
@media (prefers-color-scheme: dark) {
  body { color: #ece7de; background: #17150f; }
  .lede { color: #a99e8f; } .meta, footer { color: #8d8377; }
  a { color: #e0a077; } .word { color: #ece7de; } hr { border-top-color: #2e2a22; }
}
