html, body {
  background: #000000;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: Nasa;
  src: url("_fonts/nasa.ttf") format("truetype");
}

@font-face {
  font-family: NasaOutline;
  src: url("_fonts/nasaoutline.ttf") format("truetype");
}

@font-face {
  font-family: RoadRage;
  src: url("_fonts/roadrage.otf") format("opentype");
}

@font-face {
  font-family: AvenirNextCondensed;
  src: url("_fonts/avenirnextcondensed.otf") format("opentype");
}

.container {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.background-container {
  height: 100vh;
  width: 100vw;
  position: absolute;
  overflow: hidden;
}

.background {
  width: 100%;
  height: 100%;
  position: absolute;
  background: url('_images/bg.jpg') no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: multiply;
  opacity: 0.6;
}

.background-gradient {
  width: 800%;
  height: 800%;
  position: absolute;
  left: -400%;
  top: -400%;
  transform: translate(100%, 100%);
  background: linear-gradient(98deg, rgba(0, 214, 112, 1) 40%, rgba(0, 35, 255, 1) 45%, rgba(255, 0, 159, 1) 50%);
  animation: gradient 15s infinite;
  mix-blend-mode: overlay;
}

.content {
  width: 92%;
  max-width: 700px;
  margin: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.neon-analog {
  font-family: NasaOutline;
  font-size: 60px;
  color: #00d8fd;
  text-transform: uppercase;
  text-shadow:  0 0  5px rgba(0,216,253,0.5),
                0 0 10px rgba(0,216,253,0.6),
                0 0 15px rgba(0,216,253,0.7),
                0 0 20px rgba(0,216,253,0.8),
                0 0 30px rgba(0,216,253,0.9),
                0 0 40px rgba(0,216,253,1),
                0 0 55px rgba(0,216,253,1),
                0 0 75px rgba(0,216,253,1)
}

.flicker {
  animation: flicker .1s ease infinite;
}

.flicker2 {
  animation: flicker2 3s ease infinite;
}

.neon-82 {
  font-family: Roadrage;
  font-size: 60px;
  color: #fe3b75;
  margin-left: -14px;
  text-transform: uppercase;
  text-shadow:  0 0 25px rgba(254,59,117,0.7),
                0 0 25px rgba(254,59,117,1);
}

.neon-apostrope {
  font-size: 30px;
  position: relative;
  top: -20px;
}

.youthtopia {
  color: #ffffff;
  font-family: AvenirNextCondensed;
  font-size: 30px;
  text-transform: uppercase;
  text-shadow: 2px 2px 0px #000000;
  position: relative;
  top: -68px;
}

.release-info {
  font-family: 'Bebas Neue', cursive;
  font-size: 16px;
  line-height: 28px;
  text-shadow: 2px 2px 0px #000000;
  text-align: justify;
  color: #ffffff;
  position: relative;
  top: -72px;
}

iframe.bandcamp {
  width: 100% !important;
  height: 472px;
  border: 0;
}

.rn-logo {
  position: absolute;
  top: 20px;
  left: 20px;
}

.rn-logo img {
  width: 32px;
  opacity: 0.8;
}

.plane {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}

.plane img {
  height: 50px;
  transform: rotate(-1deg);
  position: absolute;
  animation: plane 90s infinite;
  opacity: 0.8;
}

@keyframes flicker {
  0%, 30%, 100% {
    opacity: 1;
  }
  20%, 40%, 80% {
    opacity: 0.95;
  }
}

@keyframes flicker2 {
  2.5%, 100% {
    opacity: 1;
  }
  0% {
    opacity: 0;
  }
}

@keyframes gradient {
	0% {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
	}
	100% {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
	}
}

@keyframes plane {
  0% {
    left: -1000px;
    top: 40px;
    opacity: 0.7;
  }
  100% {
    left: 2000px;
    top: 0px;
    opacity: 0.3;
  }
}


@media only screen and (max-width: 600px) {
  .neon-analog, .neon-82 {
    font-size: 50px;
  }
  .neon-apostrope {
    font-size: 25px;
    top: -16px;
  }
}
