/* Video styling */
.FLVideo {
  border-radius: 0px;
  max-height: 60vh;
  height: 420px;
  margin: 5px;
  width: calc(100% - 10px);
  display: block; 
  background-position: center center;
  background-size: cover;
}
.FLVideo:hover {
  opacity: 1;
}
#IntroPlayer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100vw - 10px);
  height: calc(90vh - 10px);
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 10px;
  overflow: hidden;
}
.FirstVideoScreen {
  position: relative;
  left: 0px;
  width: calc(100vw - 10px);
  height: calc(90vh - 10px); /* full screen height */
  padding: 5px;
  background-color: rgb(113, 52, 6, .7);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: -1;
  margin: 0;
  border-radius: 10px;
}

@media (orientation: portrait) {
  .FLVideo {
    height: calc(100vw - 10px);
    width: calc(100vw - 10px);
  }
  .FirstVideoScreen {
    max-width: 100vw;
  }
}