html,
body {
  font-family: Arial, Helvetica, sans-serif;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: black;
}

canvas {
  margin: 0;
  padding: 0;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

#progress {
  cursor: none;
  color: rgb(255, 255, 255);
  background-color: rgba(14, 2, 2, 0.5);
  width: 100%;
  height: 100%;
  /* width: 100px;
  height: 100px;
  border-radius: 50%; */
  position: fixed;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  font-size: 2rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-transform: uppercase;
}
