.section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  
  justify-content: center;
  overflow: hidden;
}

.section h1 {
  text-align: center;
  font-size: 90px;
  font-family: "Special Elite";
  padding: 20px;
  margin-top: 10px;
  z-index: 1;
  opacity: 0.7;
  }

.video-container {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%; 
  overflow: hidden;
}
.video-container video {
  /* Make video to at least 100% wide and tall */
  min-width: 100%; 
  min-height: 100%; 

  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;

  /* Center the video */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.color-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: lightblue;
  width: 100%;
  height: 100vh;
  opacity: 0.5;
}
