:root {
  --bg: #fbfbf9;
  --fg: #1e1e1c;
  --muted: #6b6b63;
  --rule: #e2e2dc;
  --accent: #7a5c2e;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #17171a;
    --fg: #e8e8e3;
    --muted: #9a9a92;
    --rule: #2e2e33;
    --accent: #c9a35f;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.65 Charter, Georgia, "Times New Roman", serif;
  -webkit-text-size-adjust: 100%;
}
.wrap { max-width: 40rem; margin: 0 auto; padding: 3.5rem 1.25rem 5rem; }
header { border-bottom: 1px solid var(--rule); padding-bottom: 1.25rem; margin-bottom: 2.25rem; }
header h1 { font-size: 1.35rem; margin: 0 0 .35rem; letter-spacing: -.01em; }
header h1 a { color: inherit; text-decoration: none; }
header p { margin: 0; color: var(--muted); font-size: .92rem; }
nav { margin-top: 1rem; font-size: .92rem; }
nav a { margin-right: 1.1rem; }
a { color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; }
a:hover { border-bottom-color: currentColor; }
h2 { font-size: 1.08rem; margin: 2.5rem 0 .5rem; letter-spacing: -.005em; }
article { border-bottom: 1px solid var(--rule); padding-bottom: 1.5rem; margin-bottom: .5rem; }
article:last-of-type { border-bottom: 0; }
time { display: block; color: var(--muted); font-size: .82rem; font-variant-numeric: tabular-nums; margin-bottom: .3rem; }
p { margin: .7rem 0; }
code {
  font: .88em/1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: color-mix(in srgb, var(--rule) 55%, transparent);
  padding: .12em .35em;
  border-radius: 3px;
}
pre {
  background: color-mix(in srgb, var(--rule) 45%, transparent);
  padding: .9rem 1rem;
  border-radius: 5px;
  overflow-x: auto;
  font: .84rem/1.55 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
pre code { background: none; padding: 0; }
ul { padding-left: 1.15rem; }
li { margin: .3rem 0; }
footer { margin-top: 3.5rem; padding-top: 1.25rem; border-top: 1px solid var(--rule); color: var(--muted); font-size: .85rem; }
