html, body {
  margin: 0;
  padding: 0;
  overflow:hidden;
  cursor: none;
  background-color: black;
  height: 100vh;
}

.container {
  position: fixed;
  left: 0;
  top: 0;
  width: 120px;
  height: 95vh;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(0,0,0,.0); 
  padding: 10px;
  padding-top: 50px;
  text-align: center;
}


canvas {
  display: block;
  margin: auto;
}

iframe {
  top: 0;
  left: 0;
  width:300px;
  position: fixed;
  width: 120px;
  height: 99vh;
  border: none;
  z-index: -1;
}
  
.button {
  transition: .7s;
  cursor: pointer;
  line-height: 30px;
  color: white;
  background-color: transparent;
  border: 5px;
  margin: 10px;
  width: 100px;
  height: 30px;
  border-radius: 0%;
  font-size: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  /* box-shadow: 0 0 10px black; */
  user-select: none;
  text-shadow: 1px 1px 5px black;
}

.button:active{
  scale: 0.8;
 }

.button:hover {
  background-color: white;
  color: black;
}

#disclaimer1 {
  position: fixed;
  top: 850px;
  left: 10px;
  color: white;
  user-select: none;
  text-shadow: 1px 1px 5px black;
}




.loader {
  width: 100%;
  font-size: 24px;
  position: fixed;
  top: 50px;
  left: 50px;
  z-index: -1;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: white;
  margin-right: 5px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.dot:nth-child(1) { animation: blink 1s infinite 0s; }
.dot:nth-child(2) { animation: blink 1s infinite 0.33s; }
.dot:nth-child(3) { animation: blink 1s infinite 0.66s; }