@import 'fonts.css';

.video-background {
  background: #000;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -99;
  height: 400px;
}

.video-foreground,
.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#vidtop-content {
  top: 0;
  color: #fff;
}

.vid-info {
  position: absolute;
  top: 40vh;
  left: 11vw;
  width: 45%;
  color: #fff;
  padding: 1rem;
  font-family: PlayfairDisplay !important;
  z-index: 9999;
}

.vid-info__name {
  font-size: 1rem;
  text-shadow: 3px 3px 5px #000;
  font-family: Barlow Semi Bold !important;
  color: #B59C56 !important;
}

.vid-info__alias {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 3px 3px 5px #000;
}

.vid-info__summary {
  text-shadow: 3px 3px 5px #000;
  font-size: 20px;
  line-height: 26px;
}

/*---prob have to be injected with script--*/
iframe .vid-info {
  top: 0 !important;
  right: 0 !important;
  margin: auto !important;
  width: 300px !important;
}

@media (min-aspect-ratio: 16/9) {
  .video-foreground {
    height: 300%;
    top: -100%;
  }
}
@media (max-aspect-ratio: 16/9) {
  .video-foreground {
    width: 300%;
    left: -100%;
  }
}
@media all and (max-width: 600px) {
  .vid-info {
    width: 50%;
    padding: 0.5rem;
  }

  .vid-info h1 {
    margin-bottom: 0.2rem;
  }
}
@media all and (max-width: 500px) {
  .vid-info .acronym {
    display: none;
  }
}
.video-background:after {
  background: linear-gradient(45deg, #121525 0%, #121525 21%, #121525 42%, rgba(18, 21, 37, 0.87) 64%, rgba(18, 21, 37, 0.87) 65%, rgba(18, 21, 37, 0.8) 100%);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 999;
  opacity: 0.6;
}