/* Schlicht und ohne fremde Ressourcen - die Seiten sollen auch dann laden,
   wenn jemand Schriften und Skripte von Dritten blockiert. */
:root {
  color-scheme: light dark;
  --text: #1c282e;
  --gedaempft: #485f6b;
  --grund: #ffffff;
  --flaeche: #f0f6f9;
  --akzent: #20b28c;
}
@media (prefers-color-scheme: dark) {
  :root {
    --text: #dce4f2;
    --gedaempft: #8a98b2;
    --grund: #1e2638;
    --flaeche: #263044;
    --akzent: #a8e6cf;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  padding: 2rem 1.25rem 4rem;
  background: var(--grund);
  color: var(--text);
  font: 16px/1.6 system-ui, -apple-system, "Segoe UI", sans-serif;
}
main { max-width: 42rem; margin: 0 auto; }
h1 { font-size: 1.75rem; margin-bottom: 0.25rem; }
h2 { font-size: 1.15rem; margin-top: 2rem; }
a { color: var(--akzent); }
code, .code {
  background: var(--flaeche);
  padding: 0.15em 0.4em;
  border-radius: 6px;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}
.hinweis {
  background: var(--flaeche);
  border-left: 4px solid var(--akzent);
  padding: 0.75rem 1rem;
  border-radius: 0 8px 8px 0;
}
footer { margin-top: 3rem; color: var(--gedaempft); font-size: 0.9rem; }
