* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    overflow-x: hidden;
  }
  
  .header {
    height: 100vh;
    display: flex;
    align-items: center;
    /* color: #fff; */
  }
  
  .content {
    max-width: 40rem;
    padding-left: 7rem;
    padding-right: 1rem;
    margin: auto;
    text-align: center;
  }
  
  .header-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  .header-video video {
    min-width: 100%;
    min-height: 100%;
  }
  
  .header-overlay {
    height: 100vh;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    background: #2af9d3 !important;
    z-index: 1;
    opacity: .35;
  }
  
  .header-content {
    z-index: 2;
    margin-top: 4rem;
  }
  
  .header-content h2 {
    font-size: 50px;
    margin-bottom: 0;
    font-family: 'Lobster', cursive;
    text-shadow: 4px 4px 4px #aaa;
  }
  .header-content label {
    font-family: 'Karla', cursive;
    font-size: 1.5rem;
  }
  .btn{
    font-size: 1.2rem !important;
    font-family: 'Secular', cursive;
  }

  
  @media (max-width: 960px) {
    .content {
      padding: 0 3rem 0 3rem;
    }
  }
  