body {
  margin: 0px;
  padding: 0px;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background-color: black;
  /* color: white; */
}

#scene-container {
  
}

#the-place {
  padding: 0px;
  margin: auto;
  display: block;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

#intro{
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  /* display: flex; */
  display: none;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: sans-serif;
}

#intro.show{
  background-color: rgba(0,0,0,1);
  /* display: flex; */
  display: none;
}
#intro.hide{
  /* display: none; */
  animation: disappear 1s ease-out;
  animation-fill-mode: forwards;
  overflow: hidden;
}
#intro.hide p{
  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);
  }
}
