:root {
  --spacing: 1em;

  color-scheme: dark;
}

* {
box-sizing: border-box;
}

body {
  background: hsl(120,50%,10%);
  color: hsl(60,80%,50%);
  font-family: monospace;
  text-shadow: 0 0 0.3em;
  display: grid;
  align-content: center;
  justify-content: center;
  text-align: center;
  width: 100svw;
  height: 100svh;
  font-size: 6svmin;
  margin: 0;
  padding: 1em;
  line-height: 1.5;
  -webkit-text-stroke: 0.1em black;
  paint-order: stroke fill;
}

p {
  margin-block: 2lh;
}

h1 {
  font-size: 1.75em;
}

h2 {
  color: hsl(180, 50%, 80%);
}

audio {
  width: 40%;
}

footer {
  margin-top: 20svh;
}