* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
}
body {
  background-color: rgba(12, 11, 11, 1);
}

#main {
  -webkit-user-select: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(
    12,
    11,
    11,
    1
  ); /* background-color: rgba(0, 0, 0, 1);*/
  overflow: hidden;
}
@media screen and (max-width:900px){
  #main {
    min-height: 55vw;    
  }
}

#ASN_RHIZO-NETWORK {
  left: 30%;
  margin-top: 1.3%;
  position: absolute;
  overflow: visible;
  width: 233px;
  white-space: nowrap;
  text-align: left;
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: normal;
  font-size: 1.8vw;
  color: rgba(248, 246, 246, 1);
}

@media screen and (max-width: 750px) {
  #ASN_RHIZO-NETWORK {
    font-size: 3vw;
  }
}

.model {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 52vw;
  top: 0;
  left: -1%;
  padding: 0;
}

#renderCanvas {
  width: 101%;
  height: 101%;
  touch-action: none;
  overflow: hidden;
  /*border: 2px solid coral; */
}
/*animated description*/
.description {
  position: absolute;
  width: 20%;
  height: 3vw;
  right: 2%;
  margin-top: 47vw;
  padding: 0.5% 1%;
  /*border: 2px solid red;*/
}
@media screen and (max-width: 700px) {
  .description {
    margin-top: 38vw;
  }
}
.description span {
  position: absolute;
  color: white;
  font-family: "Titillium Web";
  font-size: 1.3vw;
  z-index: 0;
  text-shadow: 0 0 5px #fff, 0 0 10px #a09ea1, 0 0 15px #a09ea1,
    0 0 20px #a09ea1;
}

#desc1 {
  opacity: 0;
  animation: appeard1 5s ease-in forwards;
}
@keyframes appeard1 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#desc2 {
  opacity: 0;
  animation: appeard2 5s normal forwards;
}
@keyframes appeard2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#desc3 {
  opacity: 0;
  animation: appeard3 5s normal forwards;
}
@keyframes appeard3 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


/*EXPLORE BUTTON AND POPUP "CAPTURE THE FUTURE"*/
#explore {
  position: absolute;
  left: 50%;
  margin-top: 29%;
  overflow: visible;
  cursor: pointer;
}
#explore img {
  position: absolute;
  width: 4vw;
  z-index: 10;
}

.glowbackground {
  position: absolute;
  border-radius: 20vw;
  width: 2vw;
  height: 2vw;
  left: 51%;
  margin-top: 30%;
  animation: glow 3s infinite alternate;
}
@keyframes glow {
  from {
    box-shadow: 0 0 1.5vw -1.5vw #a09ea1;
  }
  to {
    box-shadow: 0 0 1.5vw 1.5vw #a09ea1;
  }
}

@media screen and (max-width: 600px) {
  #explore img {
    width:6vw;
    z-index: 100;
  }
  .glowbackground {
    width: 4vw;
    height: 4vw;
    
  }
}

#popup_captureBackg {
  top: 0;
  position: absolute;
  width: 100%;
  height: 50vw;
  overflow: hidden;
  display: none;
}

#popup_capture {
  -webkit-user-select: none;
  display: none;
  /*background-color: rgba(255, 255, 255, 0.7);*/
  position: absolute;
  width: 21%;
  height: 8vw;
  left: 55%;
  margin-top: 21%;
  border-radius: 10% / 20%;
  overflow: visible;
  cursor: pointer;
}
#popup_capture img {
  width: 22vw;
}
