:root {
  color-scheme: light dark;
  --bg: #ffffff;
  --text: #1f2328;
  --muted: #59636e;
  --line: #d0d7de;
  --link: #0969da;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0d1117;
    --text: #e6edf3;
    --muted: #8d96a0;
    --line: #30363d;
    --link: #58a6ff;
  }
}

body {
  margin: 0 auto;
  max-width: 720px;
  padding: 40px 24px;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

h1 {
  margin: 0 0 16px;
  padding-bottom: 0.3em;
  border-bottom: 1px solid var(--line);
  font-size: 2rem;
  line-height: 1.25;
}

h2 {
  margin: 32px 0 12px;
  padding-bottom: 0.3em;
  border-bottom: 1px solid var(--line);
  font-size: 1.35rem;
  line-height: 1.25;
}

p,
ul {
  margin: 0 0 16px;
}

ul {
  padding-left: 1.3rem;
}

footer {
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding-top: 16px;
  font-size: 0.9rem;
}
