@import url('https://fonts.googleapis.com/css2?family=Wittgenstein:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  --size-1: 11px;
  --size-2: 22px;
  --size-3: 33px;
  --size-4: 44px;
  --size-5: 55px;
  --hue: 44;
  --color-0: hsl(var(--hue), 22%, 0%);
  --color-1: hsl(var(--hue), 22%, 11%);
  --color-2: hsl(var(--hue), 22%, 22%);
  --color-3: hsl(var(--hue), 22%, 33%);
  --paper: hsl(var(--hue), 22%, 88%);
  font-family: Wittgenstein, serif;
  text-rendering: optimizeLegibility;
  color-scheme: light;
  font-size: var(--size-1);
}

html,
body {
  background: var(--paper);
  font-size: var(--size-1);
  color: var(--color-1);
}

h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: var(--size-5)
}

nav {
  font-size: var(--size-3);
}

ul {
  list-style: none;
}

a {
  color: var(--text);
  text-decoration: none;
}

a:visited {
  color: var(--text);
}

section {
  display: none;
}

section:target {
  display: initial;
}
