* {
  font-family: 'Courier New', Courier, monospace;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  transition-property: background, color;
  transition-duration: 0.2s;
}

body {
  background-color: #222;
  overflow: hidden;
  margin: 0px;
  background-image: url(./assets/images/spinner.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80px auto;
  width: 100vw;
  height: 100vh;
}

#app {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0px;
  top: 0px;
  opacity: 0;
  transition: opacity 0.5s;
}

#app[data-ready] {
  opacity: 1;
}

canvas {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
}

.overlay {
  position: absolute;
  left: 20px;
  top: 20px;
  color: #FFFA;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 500;
  font-size: 14px;
}