#project #game-title {
  font-weight: normal;
}

:root {
  --lyricDuration: 2.5s;
  --screen: #000;
}

body {
  color: #fff;
  overflow: hidden !important;
}

* {
  font-family: "VCR";
}

#controls a {
  font-family: "VCR";
}

#karaoke {
  transform: perspective(500px) rotateX(5deg) scale(1.14);
  background-image: url(classroom.gif);
  background-size: cover;
  height: 100%;
}
#karaoke p {
  max-width: 820px;
  margin: 1.5rem auto;
  width: 75%;
  font-size: 2.15rem;
}

/*
  iframe{
    padding: 4rem 0;
    margin: 0;
  }

*/
.intro {
  width: 100%;
  height: 100vh;
  /*        overflow: hidden;*/
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro .wrapper {
  font-size: 1.75rem;
  text-transform: uppercase;
}

.vcr-select {
  z-index: 10;
}

.vcr-select a {
  font-size: 1.6rem;
  padding: 0.25rem;
  background: none;
  max-width: 90%;
  display: block;
  text-align: center;
  text-shadow: 0 1px 0 #000;
  margin: 0 auto;
}

.vcr-select a:hover,
[selected] {
  cursor: pointer;
  color: #000 !important;
  background: yellow !important;
}

#project h2 {
  color: #fff !important;
  font-size: 1.5rem;
  margin: 1rem auto;
  text-align: center;
  animation: blinker 2s linear infinite;
  text-shadow: 0 1px 0 #000;
}

#caption {
  font-size: 2rem;
  color: #000;
  text-shadow: none;
}
#caption span {
  text-shadow: 0 2px 0 #000, 0 -2px 0 #000, 2px 0 0 #000, -2px 0 0 #000, -2px -2px 0 #000, 2px 2px 0 #000, 2px 1px 0 #000, -2px 1px 0 #000, 2px -1px 0 #000, -2px -1px 0 #000, -2px -1px 0 #000, 2px -1px 0 #000;
}

#caption .run::after {
  color: #fff;
  text-shadow: none;
}

#intro-sequence {
  background-image: url(../preview.gif);
  background-size: cover;
  text-align: center;
  font-family: inherit;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
.question {
  width: 100%;
  display: none;
  text-align: center;
  counter-reset: options;
}

a[option] {
  counter-increment: options;
}

a[option]::before {
  content: "(" counter(options) ") ";
  font-size: 1.2rem;
  vertical-align: super;
}

button[next],
small {
  background: none;
  border: 0;
  color: yellow;
  text-align: center;
  animation: blinker 2s linear infinite;
  margin: 1rem auto;
  font-size: 1.2rem;
  display: inline-block;
  cursor: pointer;
  margin-top: 1rem;
}

button[next]:hover {
  color: yellow;
  text-shadow: 0 0 10px yellow, 0 0 30px yellow;
}

#game {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1299;
  display: none;
}
#game iframe,
#game video {
  width: 110%;
  height: 110%;
  margin-left: -5%;
  margin-top: -5%;
  transform: scale(1.1);
  animation: flicker 6s infinite;
}

#timer {
  position: fixed;
  color: #fff;
  top: 80px;
  left: 0;
  font-size: 4rem;
  width: 100%;
  text-align: center;
  z-index: 20;
  pointer-events: none;
  text-shadow: 0 1px 0 #000;
  display: none;
  text-shadow: 0 2px 0 #000, 0 -2px 0 #000, 2px 0 0 #000, -2px 0 0 #000, -2px -2px 0 #000, 2px 2px 0 #000, 2px 1px 0 #000, -2px 1px 0 #000, 2px -1px 0 #000, -2px -1px 0 #000, -2px -1px 0 #000, 2px -1px 0 #000;
}

@keyframes flicker {
  0% {
    opacity: 0.7;
  }
  10% {
    opacity: 0.85;
  }
  20% {
    opacity: 0.75;
  }
  30% {
    opacity: 0.9;
  }
  40% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.95;
  }
  60% {
    opacity: 0.85;
  }
  70% {
    opacity: 0.93;
  }
  80% {
    opacity: 0.75;
  }
  90% {
    opacity: 0.88;
  }
  100% {
    opacity: 0.7;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*# sourceMappingURL=styling.css.map */
