.pix {
  animation: x 10s ease-out infinite;
}

.play {
  animation: y 10s ease-out infinite;
}

.byline span {
  animation: spin-letters 10s linear infinite;
}

.byline {
  animation: move-byline 10s linear infinite;
}

/* Keyframes */
@keyframes x {
  0% {
    opacity: 0;
    transform: scale(1.5) translateY(-0.75em);
  }
  20% {
    opacity: 1;
  }
  89% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: translateZ(-1000em);
  }
}
@keyframes y {
  0% {
    opacity: 0;
    transform: scale(1.5) translateY(0.5em);
  }
  20% {
    opacity: 1;
  }
  90% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: translateZ(-1000em);
  }
}
@keyframes spin-letters {
  0%, 10% {
    opacity: 0;
    transform: rotateY(90deg);
  }
  30% {
    opacity: 1;
  }
  70%, 86% {
    transform: rotateY(0);
    opacity: 1;
  }
  95%, 100% {
    opacity: 0;
  }
}
@keyframes move-byline {
  0% {
    transform: translateZ(5em);
  }
  100% {
    transform: translateZ(0);
  }
}
.pixel-play {
  perspective: 800px;
  transform-style: preserve3d;
}

body {
  background: linear-gradient(rgba(0, 0, 0, 0.666), rgba(0, 0, 0, 0.605)), url(../Img/contact/cont-back-2.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.pixel-play {
  height: 17em;
  left: 50%;
  position: absolute;
  top: 53%;
  transform: translate(-50%, -50%);
  width: 34em;
}

.byline span {
  display: inline-block;
}

.pix, .play, .byline {
  position: absolute;
}

.pix {
  top: -0.75em;
}

.play {
  bottom: -0.5em;
}

.byline {
  color: #ff0404;
  font-family: "ITC Serif Gothic", Lato;
  font-size: 2.25em;
  left: -2em;
  letter-spacing: 0.4em;
  right: -2em;
  text-align: center;
  text-transform: uppercase;
  top: 29%;
  font-weight: bold;
  box-shadow: 5px 7px 16px 2px hsl(0, 100%, 50%);
}

/*** Media queries for adjusting to different screen sizes ***/
@media only screen and (max-width: 600px) {
  .pixel-play {
    font-size: 10px;
  }
  .pix {
    top: -40px !important;
    left: 90px !important;
  }
  .play {
    top: 100px !important;
    left: 90px !important;
  }
}
@media only screen and (max-width: 480px) {
  .pixel-play {
    font-size: 7px;
  }
}/*# sourceMappingURL=intro.css.map */