* {
  box-sizing: border-box;
}

/* shadows-into-light-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Shadows Into Light";
  font-style: normal;
  font-weight: 400;
  src: url("shadows-into-light-v19-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
  bottom: 0;
  left: 0;
  margin: 0;
  right: 0;
  top: 0;

  transform-origin: 0px 0px;

  overflow: hidden;

  width: 100vw;
  height: 100vh;

  display: grid;
  place-items: center;

  font-family: "Shadows Into Light";

  color: black;
  text-shadow: 1px 1px 2px black;
}

a {
  color: black;
  text-decoration: none;
  backdrop-filter: blur(1em);
  border-radius: 0.5em;
  padding: 0.25em;
  border: 4px solid black;
}

#score {
  position: absolute;
  height: 100vh;
  display: grid;
  place-items: center;
  font-size: 48px;
  text-align: center;
  color: black;
  text-shadow: 1px 1px 2px black;
}

.control-panel {
  display: none;
}

#loading {
  background-image: url(metal.jpg);
  background-size: contain;

  color: black;

  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: grid;
  place-items: center;
  text-align: center;
  font-size: 48px;
}
