html,
body {
  margin: 0px;
  width: 100%;
  height: 100%;
  background-color: black;
  color: beige;
  overflow: hidden;
}

#app {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

#video {
  /* position: absolute; */
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  /* width: 100% !important;
  height: 100% !important;
  object-fit: cover; */
  z-index: 0;
  transition: opacity 2s;
}

#threeCanvas {
  position: absolute;
  top: 0;
  left: 0;
  /*  width: 100% !important;
  height: 100% !important; */
  /* object-fit: cover; */
  z-index: 1;
}

#loading{
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 10;
  font-size: 30px;
  font-family: sans-serif;
  font-weight: bold;
  color: white;
  background-color: rgba(0, 0, 0, 0.496);
}

#htmlframe {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: absolute;
 
  top: 0px;
  left: 0px;
  display: none;
  font-size: 5ch;
  font-family: sans-serif;
  font-weight: bold;
  border: solid rgb(153, 1, 1) 10px;
  color: rgb(153, 1, 1);
}
