:root {
  color-scheme: light dark;
  --text: light-dark(#222222, #eeeeee);
  --bg: light-dark(#f6f6f6, #333333);
  --accent: light-dark(#ff6600, #ff9955);
}

* { box-sizing: border-box; }

body {
  font-family: system-ui;
  color: var(--text);
  background: var(--bg);
  line-height: 1.3;
}

article > *:not(.full) {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

pre, code {
  font-family: "Consolas", monospace;
  font-size: 14px;
  letter-spacing: 0.25px;
  background: #00000008;
}

pre {
  padding: 0.5rem 0 0.5rem 1.5rem;
  border-left: 1px solid var(--accent);
}

.comment {
  font-family: system-ui;
  letter-spacing: 0px;
  color: var(--accent);
}