/*@import "compass/css3";*/

@import url(https://fonts.googleapis.com/css?family=Press+Start+2P);




p {
  padding: 2em 2rem;
  text-align: center;
}


body {
  /* Force the body to fill the entire screen */
  width: 100%;
  height: 100%;
  /* Hide elements that flow outside the viewable space */
  overflow: hidden;
  /* Black background for the screen */
  background: #000;
}

.navbar {
  background-color: #000000;
  border-radius: 2px;
  max-width: 1600px;
}

.navbar a {
  display: inline-block;
  font-size: 15px;
  padding: 10px;
  text-decoration: none;
}

.navbar a:hover {
  color: #d9a0ff;
}

.TextGeneral {
  font-family: Cambria;
  margin: auto;
  max-width: 1280px;
  text-align: left;
}

.GeneralBodyText {
  font-family: Verdana;
  margin: auto;
  max-width: 1280px;
}

.wubkinsAdaptation {
  font-family: 'press start 2p';
  font-size: 3rem;
  background: rgba(0, 0, 0, 0);
  color: rgb(7, 15, 254);
  text-shadow: 0 .1em 0 #ffb4ec00;
  background-repeat: repeat;
  background-size: 20px 10px;
  text-align: center;
}

.atari {
  font-family: 'press start 2p';
  font-size: 1rem;
  background: rgba(0, 0, 0, 0);
  color: rgb(252, 255, 92);
  text-shadow: 0 .1em 0 #c1ffdf;
  background-repeat: repeat;
  background-size: 20px 10px;
  text-align: center;
  line-height: 150%;
}

.atari2 {
  font-family: 'press start 2p';
  font-size: 1rem;
  background: rgba(0, 0, 0, 0);
  color: rgb(73, 255, 53);
  text-shadow: 0 .1em 0 #c4c3ff;
  background-repeat: repeat;
  background-size: 20px 10px;
  text-align: center;
}

.starWarsText {
  /* Flexbox to center the entire element on the screen */
  display: flex;
  justify-content: center;
  /* This is a magic number based on the context in which this snippet is used and effects the perspective */
  height: 800px;
  /* This sets allows us to transform the text on a 3D plane, and is somewhat a magic number */
  perspective: 400px;
  /* The rest is totally up to personal styling preferences */
  color: #feda4a;
  font-family: 'press start 2p';
  font-size: 200%;
  font-weight: 600;
  letter-spacing: 6px;
  line-height: 150%;
  text-align: left;
}

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

.crawl {
  position: relative;
  top: 9999px;
  transform-origin: 50% 100%;
  animation: crawl 90s;
  animation-iteration-count: infinite;
}


.crawl > .crawltitle {
  line-height: 20%;
  font-size: 90%;
  text-align: center;
}

.crawl > .crawltitle h1 {
  line-height: 0%;
  margin: 0 0 50px;
  text-transform: uppercase;
  text-align: center;
}


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