.splash {
  position: fixed;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0);
  overflow: hidden;
  z-index: 9999;
}

.hidden {
  display: none;
}

.to-site {
  cursor: pointer;
  position: fixed;
  width: 100%;
  font-size: 24px;
  z-index: 2;
  border: none;
  background: #eee;
}

.fade {
  position: fixed;
  width: 100%;
  min-height: 60vh;
  background-image: linear-gradient(0deg, transparent, black 75%);
  z-index: 1;
}

.star-wars {
  display: flex;
  justify-content: center;
  position: relative;
  height: 800px;
  font-size: calc(100vw / 20);
  font-weight: 600;
  letter-spacing: 6px;
  line-height: 150%;
  perspective: 400px;
  text-align: justify;
  width: 100vw;
}
.star-wars,
.star-wars .title {
  color: #feda4a;
  font-family: 'Pathway Gothic One', sans-serif;
}

.crawl {
  position: relative;
  top: 9999px; /* after animation finishes playing position off screen */
  transform-origin: 50% 100%;
  animation: crawl 60s linear;
  z-index: 0;
}

.smart-power .crawl > .title {
  text-align: center;
}

.crawl > .title h1 {
  font-size: 96px;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 5rem;
}

@keyframes crawl {
  0% {
    top: 80vh;
    transform: rotateX(20deg) translateZ(0);
  }
  100% {
    top: -6000px;
    transform: rotateX(25deg) translateZ(-2500px);
  }
}
