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

.section h1 {
  text-align: center;
  font-size: 6rem;
  font-family: "Helvetica";
  padding: 20px;
  margin: 15px;
  z-index: 1;
  opacity: 0.7;
}
.section h2 {
  text-align: center;
  font-size: 6rem;
  font-family: "Helvetica";
  padding: 20px;
  margin: 15px;
  z-index: 1;
  opacity: 0.7;
}
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

hr {
    margin: auto;
    width: 40%;
}

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