body {
  margin: 0px;
  padding: 0px;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  /* background-color: black; */
  background-color: #fff;
  /* pointer-events: none; */
}
body.not-compatible {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: sans-serif;
  font-size: 2rem;
}
#error-message {
  text-align: center;
  display: none;
}
.not-compatible #error-message {
  display: initial;
}
#the-place {
  padding: 0px;
  margin: auto;
  display: block;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100vw;
  height: 100vh;
  cursor: crosshair;
  /* pointer-events: none; */
}

#intro {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  display: flex;
  /* display: none; */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: sans-serif;
  /* cursor: progress; */
}
#intro p {
  border-radius: 50%;
  height: 1px;
  width: 1px;
  border: 1px solid #fff;
  animation: waves 1s ease-out infinite;
  margin-top: 150px;
}
#intro-bar-container {
  height: 20px;
  width: 100px;
  box-sizing: border-box;
  border: 1px solid white;
  margin-top: 150px;
}
#intro-bar {
  height: 18px;
  /* width: 0px; */
  background-color: #fff;
}

#intro.show {
  background-color: rgba(0, 0, 0, 1);
  display: flex;
  /* opacity: 0; */
}
#intro.hide {
  /* display: none; */
  animation: disappear 3s ease-out;
  animation-fill-mode: forwards;
  overflow: hidden;
}
#intro.hide p {
  display: none;
}
#intro.hide #intro-bar-container {
  display: none;
}

@keyframes disappear {
  0% {
    background-color: rgba(0, 0, 0, 1);
  }
  99% {
    width: 100vw;
    height: 100vh;
  }
  100% {
    width: 0px;
    height: 0px;
    background-color: rgba(0, 0, 0, 0);
  }
}

@keyframes waves {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(16.18);
    opacity: 0.1;
  }
}
#fullscreen-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #000;
  height: 36px;
  width: 36px;
  z-index: 2;
  box-sizing: border-box;
  border: 3px solid white;
}
#fullscreen-button:hover {
  background-color: #fff;
  border: 3px solid black;
  cursor: pointer;
}
