#scene-launch #scene {
  position: fixed;
  width: 100%;
  height: 140dvh;
  perspective: 0px;
}
#scene-launch .background-image {
  position: fixed;
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 100%;
}

h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: monospace;
  color: white;
  font-size: 2rem;
  z-index: 2;
}

.scrolling-text {
  margin-left: 2%;
  padding: 0;
  height: 100vw;
  overflow-x: hidden;
}

h2 {
  padding: 0;
  position: fixed;
  top: 82%;
  transform: translateY(-50%);
  transform: translateX(5%);
  white-space: nowrap;
  font-size: 1rem;
  text-align: center;
  font-family: monospace;
  color: white;
}

h3 {
  padding: 0;
  position: fixed;
  top: 85%;
  transform: translateY(-50%);
  transform: translateX(5%);
  white-space: nowrap;
  font-size: 1rem;
  left: 250vw;
  text-align: center;
  font-family: monospace;
  color: white;
}

h4 {
  padding: 0;
  margin-left: 0%;
  position: fixed;
  top: 88%;
  transform: translateY(-50%);
  transform: translateX(5%);
  white-space: nowrap;
  font-size: 1rem;
  left: 200vw;
  text-align: center;
  font-family: monospace;
  color: white;
}

h6 {
  margin: 0;
  padding: 0;
  position: fixed;
  top: 90%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-size: 1rem;
  left: 100vw;
  text-align: center;
  font-family: monospace;
  color: white;
  animation: blink 1s infinite;
}

.dot {
  position: fixed;
  top: 50%;
  left: 50vw;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  border: 6px solid transparent;
  opacity: 0;
  z-index: 0;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (orientation: portrait) {
  #scene-launch #scene {
    height: 100vh;
  }
  h6 {
    margin-top: 7%;
    margin-left: -37%;
  }
  h3 {
    margin-left: -2%;
  }
}/*# sourceMappingURL=section1.css.map */