/* video background */
#background-video {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
  }
  
  /* page content */
  h1, h2, h3, p {
    color: white;
    font-family: Trebuchet MS;
    font-weight: bold;
    text-align: center;
  }
  
  h1 {
    font-size: 6rem;
    margin-top: 30vh;
    line-height: 0px;
  }
  
  h2 { font-size: 3rem; }

  h3 { font-size: 1.4rem; }

  p, a { 
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
  }

  p.desc {
    font-size: 1.2rem;
  }
  
  @media (max-width: 750px) {
      #background-video { display: none; }
      body {
        background: url("../media/photo.png") no-repeat;
        background-size: cover;
      }

      h1 {
        font-size: 6rem;
        margin-top: 15vh;
        line-height: 0px;
      }

      p,a { font-size: 1rem;}

   
  }