body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  font-family: monospace;
}

video {
  opacity: 1;
  max-width: 100vw;
  /* transform: scaleX(-1); */
}

.loading {
  position: absolute;
  z-index: 999;
  color: #fff;
  font-size: 30px;
  width: 200px;
  text-align: center;
  --loading: 0%;
}

.loading::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  background-color: #fff3;
  height: 2px;
  width: 100%;
}

.loading::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  background-color: #fff;
  height: 2px;
  width: var(--loading);
  transition: .2s ease-out;
}

.nearest {
  position: absolute;
  top: 0;
  left: 0;
}

canvas {
  position: absolute;
  max-width: 100vw;
}


/* 
video {
  width: 720px;
  height: 560px;
} */
