:root {
  --bg: #fbfaf7;
  --fg: #24211d;
  --muted: #6d6862;
  --line: #e3ded4;
  --link: #8a5a2b;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.65 Georgia, "Times New Roman", serif;
  -webkit-text-size-adjust: 100%;
}

.wrap {
  max-width: 41rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

header.site {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

header.site h1 {
  font-size: 1.35rem;
  margin: 0 0 .35rem;
  letter-spacing: .01em;
}

header.site h1 a { color: var(--fg); text-decoration: none; }

nav a {
  color: var(--muted);
  text-decoration: none;
  margin-right: 1rem;
  font-size: .9rem;
}

nav a:hover { color: var(--link); }

a { color: var(--link); }

article + article {
  margin-top: 2.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--line);
}

article h2 { font-size: 1.1rem; margin: 0 0 .3rem; }

time { color: var(--muted); font-size: .85rem; display: block; margin-bottom: .6rem; }

pre {
  background: #f2efe8;
  border: 1px solid var(--line);
  padding: .75rem .9rem;
  overflow-x: auto;
  font: 13px/1.5 ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

code { font: 13px/1.5 ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace; }

footer.site {
  margin-top: 3.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .85rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #17150f;
    --fg: #e6e1d6;
    --muted: #948d81;
    --line: #322d24;
    --link: #d3a06a;
  }
  pre { background: #201d16; }
}
