* { margin: 0; padding: 0; }

body ul li {
    list-style-type: none;
}

#wrapper {
}

#bgVideo {
    position: fixed;
    min-width: 100%;
    min-height: 100%;
}

#videoOverlay {
    position: fixed;
    min-width: 100%;
    min-height: 100%;
    background: rgba(0,0,0,0.8);
}

/* Add a black background color to the top navigation */
.topnav {
    position: relative;
    overflow: hidden;
  }
  
  /* Style the links inside the navigation bar */
  .topnav a {
    float: right;
    display: block;
    color: #f2f2f2;
    padding: 14px 16px;
    text-decoration: none;
    font-family: 'Noto Sans', sans-serif;
    font-variant: small-caps;
    font-size: 1.3em;
  }
  
  /* Change the color of links on hover */
  .topnav a:hover {
    background-color: rgba(0,152,255,0.3);
  }
  
  /* Hide the link that should open and close the topnav on small screens */
  .topnav .icon {
    display: none;
  }
  

#logo {
    position: relative;
    text-align: center;
    margin-top: 100px;
}

#pitch {
    position: relative;
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    color: white;
    margin-top: 40px;
}

#pitch .pitchBig {
    font-size: 2.5em;
}

#pitch .pitchSmall {
    font-size: 1.36em;
}

#bigNav {
    position: relative;
    text-align: center;
    margin-top: 100px;
}

#bigNav img {
    width: 300px;
    height: auto;
}

#footer {
    position: absolute;
    right: 0;
    bottom: 10px;
    padding: 25px 50px 0px 0px;
    font-family: 'Noto Sans', sans-serif;
    font-variant: small-caps;
    color: rgba(255, 255, 255, 0.459);
    font-size: 0.8em;
}

#footer a {
    color: rgba(255, 255, 255, 0.459);
    text-decoration: none;
}

#footer a:hover {
    color: white;
}

@media screen and (max-width: 850px) {
    .topnav a:not(:last-child) {display: none;}
    .topnav a.icon {
      float: right;
      display: block;
    }

    #pitch .pitchBig {
        font-size: 1.5em;
    }
    
    #pitch .pitchSmall {
        font-size: 0.8em;
    }

    #logo img {
      width: 400px;
    }

    #bigNav img {
        width: 230px;
        height: auto;
    }
  }
  
  /* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
  @media screen and (max-width: 850px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive a.icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  }