body {
  width: 100%;
  height: 100%;
  background: url(https://mcdn.wallpapersafari.com/medium/96/60/ZBf0Im.jpg);
  overflow: hidden;
}

.fade {
  position: relative;
  width: 100%;
  min-height: 60vh;
  top: -25px;
  background-image: linear-gradient(0deg, transparent, black 75%);
  z-index: 1;
}

.star-wars {
  display: flex;
  position: relative;
  height: 800px;
  color: #feda4a;
  font-family: 'SF Distant Galaxy Alternate', Fantasy;
  text-transform: lowercase;
  font-size: 500%;
  font-weight: 600;
  letter-spacing: 6px;
  line-height: 150%;
  perspective: 400px;
  text-align: justify;
}
.job{
  text-align: center;
  color: lightblue;
}
.name{
  text-align: center;
  color: gold;
}

.crawl {
  position: relative;
  top: 99999px;
  transform-origin: 50% 100%;
  -webkit-animation: crawl 60s linear;
          animation: crawl 60s linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.crawl > .title {
  font-size: 90%;
  text-align: center;
}

.crawl > .title h1 {
  margin: 0 0 100px;
  text-transform: lowercase;
}

@-webkit-keyframes crawl {
	0% {
    top: -100px;
    transform: rotateX(20deg)  translateZ(0);
  }
	100% { 
    top: -6000px;
    transform: rotateX(25deg) translateZ(-2500px);
  }
}

@keyframes crawl {
	0% {
    top: -100px;
    transform: rotateX(20deg)  translateZ(0);
  }
	100% { 
    top: -6000px;
    transform: rotateX(25deg) translateZ(-2500px);
  }
}