.video-container {
  position: absolute;
  top: 0;
  left: 0;
  /* width: 100vw; */
  /* height: 100vh; */
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.video-container > video {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

@media screen and (max-aspect-ratio: 1280/720) {
  .video-container > video {
    height: 100%;
  }
}
@media screen and (min-aspect-ratio: 1280/720) {
  .video-container > video {
    width: 100%;
  }
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 100;
}

.content {
  position: fixed;

  bottom: 40%;
  background: rgba(0, 0, 0, 0);
  color: #f1f1f1;
  width: 100%;
  padding: 0px;
  text-align: center;
  z-index: 200;
}

#myBtnDiv {
  position: fixed;
  bottom: 1%;
  right: 1%;
}

.myBtn {
  width: 3em;
  font-size: 18px;
  padding: 0px;
  border: none;
  background: rgba(0, 0, 0, 0.0);
  color: #fff;
  cursor: pointer;
}

.myBtn:hover {
  background: #ddd;
  color: black;
}

@supports (-webkit-text-stroke: 2px black) {
  h1 {
    -webkit-text-stroke: 2px black;
    -webkit-text-fill-color: white;
    font-size: 100px;
    font-family: 'Orbitron', sans-serif;
    margin: 0;
  }

  h2 {
    -webkit-text-stroke: 2px black;
    -webkit-text-fill-color: white;
    font-size: 50px;
    font-family: 'Orbitron', sans-serif;
    margin: 0;
  }
}