.loading-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
}

.loading-container {
  position: absolute;
  top: 49%;
  left: 38.2vw;
  transform: translateY(-50%);
  pointer-events: none;
}

section .tagline-wrapper {
  position: absolute;
  width: 100%;
  left: 0;
  top: 48%;
  transform: translateY(-50%);
}

section .tagline-wrapper p {
  margin: 0;
  opacity: 0;
  transition: opacity 1000ms;
}

@media only screen and (max-width: 800px) {
  .loading-container {
    left: 26.1vw;
  }
}