:root {
  /* Base font size */
  font-size: 15px;

  /* Full grid area variable */
  --fullGrid: 1 / 1 / -1 / -1;
}

.video {
  border: none;
  overflow: hidden;
}

.video-bg {
  /* Span the full grid */
  grid-area: var(--fullGrid);
  display: grid;

  /* Re-size video to cover full screen while maintaining aspect ratio */
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;

  /* Display video below overlay */
  z-index: -1;
  overflow: hidden;
  border: none;
}

.video-bg::-webkit-media-controls {
  display: none !important;
}

.video-overlay {
  position: absolute;
  top: 50%;

  /* Span the full grid */
  grid-area: var(--fullGrid);

  /* Center Content */
  /*display: grid;*/
  justify-content: center;
  align-content: center;
  text-align: center;

  /* Semi-transparent background */
  /*background-color: rgba(0, 0, 0, 0.55);*/
  overflow: hidden;
}

.video-overlay h1 {
  font-size: 37px;
  color: #fff;
}
