* {
  margin: 0;
  --tc: #111;
  --bc: #fff;
  --hc: #1976D2;
}

@media (prefers-color-scheme: dark) {
  * {
    --tc: #fff;
    --bc: #111;
    --hc: #1976D2;
  }
}

body {
  font: 18px -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.4;
  color: var(--tc);
  background: var(--bc);
  max-width: 36em;
  margin: 0 auto;
  padding: 0 0.7em;
  text-align: justify;
}

main {
  margin-bottom: 3em;
}

a,
label {
  text-decoration: none;
  color: var(--hc);
  cursor: pointer;
}

a:hover,
label:hover {
  text-decoration: underline;
}

h2,
br,
header,
ul {
  margin-bottom: 1em;
}

ul {
  padding-left: 1em;
  list-style: none;
}

br {
  content: " ";
}

/* navigation */
input[type="radio"],
section {
  display: none;
}

br,
[type="radio"]:checked ~ section {
  display: block;
}
/* end navigation */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

h1 {
  font-size: 1.7em;
  font-weight: 700;
}

nav label {
  margin-left: 1em;
}
