.video-container {
  height: 100%;
  width: 100%;
}

.video-container video {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  z-index: 0;
}

.video-container .caption {
  z-index: 1;
  position: absolute;
  text-align: center;
  color: rgb(60, 60, 60);
  padding: 10px;
  left: 50%;
  top: 40%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: aliceblue;
  border-radius: 8px;
}