body {
  display: flex;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  font-family: nimbus-sans, sans-serif;
  flex-direction: column;
  color: white;
  padding: 0px;
  margin: 0px;
}

h1 {
  font-size: 42px;
  line-height: 1;
}

h2 {
  font-size: 22px;
}

p {
  opacity: 0.58;
}

.container {
  text-align: center;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  display: flex;
}

.no-signal {
  background-image: url("./no-signal.gif");
  opacity: 0.15;
  height: 100vh;
  width: 100vw;
  position: absolute;
}

.frame {
  height: 100vh;
  width: 10vw;
  position: absolute;
}

canvas {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.caps {
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: as 8s linear infinite;
}

.caps img {
  display: block;
  width: 100%;
  height: 100%;
}

@keyframes as {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  20% {
    opacity: 0.1;
  }
  30% {
    opacity: 0.5;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
  55% {
    opacity: 0;
  }
  55% {
    opacity: 0;
  }
}

.frame {
  z-index: 3;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -moz-radial-gradient(
    center,
    ellipse cover,
    rgba(88, 52, 52, 0) 0%,
    rgba(155, 155, 155, 0.1) 50%,
    rgba(0, 0, 0, 0.9) 100%
  ); /* FF3.6+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#00000000', endColorstr = '#e6000000', GradientType = 1); /* IE6-9 fallback on horizontal gradient */
}

.frame div {
  position: absolute;
  left: 0;
  top: -20%;
  width: 100%;
  height: 20%;
  background-color: rgba(155, 155, 155, 0.1);
  filter: blur(8px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  animation: asd 12s linear infinite;
}

.frame div:nth-child(1) {
  animation-delay: 0;
}

.frame div:nth-child(2) {
  animation-delay: 4s;
}

.frame div:nth-child(3) {
  animation-delay: 8s;
}

.vjs_video_3-dimensions {
  width: 100% !important;
}

@keyframes asd {
  0% {
    top: -20%;
  }
  100% {
    top: 100%;
  }
}

@keyframes asdd {
  0% {
    text-shadow: 0 0 0px rgba(255, 255, 255, 0.8);
  }
  33% {
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.8);
  }
  66% {
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.84);
  }
  100% {
    text-shadow: 0 0 0px rgba(255, 255, 255, 0.7);
  }
}
