/* video background */
#background-video {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.container {
    height: 90vh;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    
}

/* page content */

.content {
    padding-top:5%;
    padding-bottom: 5%;
    width: 85%;
    position: absolute;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    max-width: 1600px
}

  h1 {
    font-size: 80px;
    line-height: 1em; 
  }


@media (max-width: 750px) {
  h1 {
    font-size: 45px;
  }
  body {
    line-height: 1.3em; 
   
    }
  }
}

