html,
body {
  overflow: hidden;
  background: rgb(10, 10, 10);
  margin: 0;
  padding: 0;
}

canvas {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  overflow: auto;
  position: fixed;
  object-fit: contain;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

#loading {
  width: 100vw;
  height: 100vh;
  background: black;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1) 1s;
}

#loading.hide {
  opacity: 0
}

#loading.remove {
  display: none;
}

#loading p {
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
  text-align: center;
  color: white;
  font-family: sans-serif;
}