:root {
  --bg: #ffffff;
  --fg: #1a1a1a;
  --muted: #5c5c5c;
  --rule: #e0e0e0;
  --accent: #2f5d8a;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #16181c;
    --fg: #e8e8e8;
    --muted: #a0a4ab;
    --rule: #33373d;
    --accent: #7fb0e0;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  padding: 2.5rem 1.25rem 4rem;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}
main { max-width: 42rem; margin: 0 auto; }
h1 { font-size: 1.75rem; line-height: 1.25; margin: 0 0 .25rem; }
h2 { font-size: 1.15rem; margin: 2rem 0 .5rem; }
h3 { font-size: 1rem; margin: 1.5rem 0 .35rem; }
p, ul { margin: 0 0 1rem; }
ul { padding-left: 1.35rem; }
li { margin-bottom: .4rem; }
a { color: var(--accent); }
hr { border: 0; border-top: 1px solid var(--rule); margin: 3.5rem 0; }
.lang-nav { font-size: .9rem; color: var(--muted); margin: 0 0 2rem; }
.subtitle { color: var(--muted); margin: 0 0 1.75rem; }
.updated { color: var(--muted); font-size: .9rem; margin-top: 2.5rem; }
.back { font-size: .9rem; margin-top: 3rem; }
strong { font-weight: 600; }

/* Landingsside */
.home h1 { margin-bottom: 1.5rem; }
.links { list-style: none; padding: 0; }
.links li { margin-bottom: 1.25rem; }
.links a { font-size: 1.1rem; font-weight: 600; text-decoration: none; }
.links a:hover { text-decoration: underline; }
.links span { display: block; color: var(--muted); font-size: .95rem; font-weight: 400; }
