html, body, .container {
  font-family: 'Raleway', sans-serif;
  overflow-x: hidden;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  width: 100vw;
}

canvas {
  background: -webkit-radial-gradient(rgb(35, 35, 35),rgb(25, 25, 25));
  background: -o-radial-gradient(rgb(35, 35, 35),rgb(25, 25, 25));
  background: -moz-radial-gradient(rgb(35, 35, 35),rgb(25, 25, 25));
  background: radial-gradient(rgb(35, 35, 35),rgb(25, 25, 25));
  position: absolute;
  height: 500px;
  width: 100vw;
  z-index: -1000;
}

@media screen and (max-width: 767px) {
  #mobileNav {
    background-color: rgba(25, 25, 25, .8);
    position: fixed;
    height: 70px;
    width: 100vw;
    z-index: 1000;
    overflow: hidden;
  }

  #navLogo {
    height: 50px;
    margin-left: 20px;
    margin-top: 10px;
  }

  #menuBtn, #menuBtn:focus {
    margin-top: 15px;
    margin-right: 15px;
    height: 40px;
    width: 40px;
    background-color: rgba(25, 25, 25, 0);
    color: rgb(216, 210, 156);
    font-size: 26px;
    border: none;
    outline: 0;
    opacity: .85;
    transition: 500ms all;
  }

  #menuBtn:hover {
    opacity: 1;
    width: 50px;
  }

  .mobileMenu {
    background-color: rgba(25, 25, 25, .8);
    margin-top: 70px;
    position: fixed;
    overflow: hidden;
    width: 100vw;
    height: 0;
    opacity: 0;
    transition: all 500ms;
    z-index: 500;
  }

  .showMenu {
    height: 200px;
    opacity: 1;
  }

  .menuItem {
    color: rgb(216, 210, 156);
    list-style-type: none;
    font-size: 24px;
    margin-top: 3px;
    margin-right: 10px;
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
    transition: 500ms all;
  }

  .menuItem:hover {
    font-weight: bold;
    text-decoration: none;
    color: rgb(216, 210, 156);
    font-size: 25px;
    margin-top: 2px;
  }

  #jumbotron {
    background-size: cover;
    margin-top: 70px;
    height: 430px;
    overflow-x: hidden;
  }

  .jumboTitle {
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
    color: rgb(216, 210, 156);
    margin: 90px 20px 0px 20px;
    font-size: 55px;
    opacity: 0;
    transition: 4s all;
  }

  .jumboSubtitle {
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
    color: rgb(216, 210, 156);
    font-size: 30px;
    margin: 30px;
    opacity: 0;
    transition: 4s all;
  }

  .showTitle {
    opacity: 1;
  }

  .section {
    padding: 0px 20px 20px 20px;
    display: none;
  }

  .showSection {
    display: block;
  }

  .sectionTitle {
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
    color: rgb(25, 25, 25);
    font-size: 40px;
    margin-top: 70px;
  }

  .sectionSubtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    margin-top: 25px;
    color: rgb(25, 25, 25);
  }

  .sectionImage {
    margin-top: 25px;
    margin-bottom: 25px;
    width: 280px;
    border: thin solid rgba(32, 36, 48, .5);
  }

  .sectionText {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    color: rgb(25, 25, 25);
    margin-top: 25px;
    list-style-type: none;
  }

  .sectionList {
      margin-top: 25px;
      padding: 0;
  }

  .sectionLogo {
    list-style-type: none;
    display: inline-block;
    width: 90px;
    opacity: .8;
    margin: 5px;
    transition: 500ms all;
  }

  .sectionLogo:hover {
    opacity: 1;
  }

  .sectionSchoolImage {
    width: 90px;
    margin-top: 25px;
  }

  #map {
    margin-top: 50px;
    height: 280px;
    width: 280px;
  }

  .footer {
    background-color: rgba(25, 25, 25, 1);
    width: 100vw;
    height: 80px;
    left: 0;
    margin-top: 25px;
  }

  .footerList {
    margin: 20px 0px 20px 0px;
  }

  .footerText {
    color: rgb(216, 210, 156);
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    margin-right: 20px;
    display: inline;
    list-style-type: none;
    transition: 500ms all;
  }
}

@media screen and (min-width: 768px) {
  .desktopNav {
    background-color: rgba(25, 25, 25, .8);
    position: fixed;
    overflow: hidden;
    height: 80px;
    width: 100vw;
    z-index: 1000;
  }

  .logo {
    height: 50px;
    margin-left: 20px;
    margin-top: 10px;
  }

  .menu {
    margin-top: 45px;
  }

  .menuItem {
    list-style-type: none;
    display: inline;
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
    color: rgb(216, 210, 156);
    font-size: 20px;
    margin-right: 20px;
    opacity: .85;
    transition: 500ms all;
  }

  .menuItem:hover {
    color: rgb(216, 210, 156);
    text-decoration: none;
    opacity: 1;
    font-weight: bold;
    margin-right: 17px;
    font-size: 21px;
  }

  #jumbotron {
    background-size: cover;
    margin-top: 80px;
    height: 430px;
    overflow-x: hidden;
  }

  .jumboTitle {
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
    color: rgb(216, 210, 156);
    margin: 90px 20px 0px 20px;
    font-size: 80px;
    opacity: 0;
    transition: 4s all;
  }

  .jumboSubtitle {
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
    color: rgb(216, 210, 156);
    font-size: 40px;
    margin: 30px;
    opacity: 0;
    transition: 4s all;
  }

  .showTitle {
    opacity: 1;
  }

  .section {
    padding: 20px 10vw 10vh 10vw;
    display: none;
  }

  .showSection {
    display: block;
  }

  .sectionTitle {
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
    color: rgb(25, 25, 25);
    font-size: 50px;
    margin-top: 55px;
  }

  .sectionSubtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 35px;
    margin-top: 35px;
    color: rgb(25, 25, 25);
    transition: 500ms all;
  }

  .sectionSubtitle:hover {
    font-size: 36px;
    margin-top: 33.5px;
  }

  .sectionImage {
    margin-top: 25px;
    margin-bottom: 25px;
    width: 300px;
    border: thin solid rgba(32, 36, 48, .5);
    transition: 500ms all;
  }

  .sectionImage:hover {
    width: 310px;
    margin-top: 17px;
    margin-bottom: 17px;
  }

  .sectionText {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    color: rgb(25, 25, 25);
    margin-top: 25px;
    list-style-type: none;
  }

  .sectionList {
      margin-top: 25px;
      padding: 0;
      height: 350px;
  }

  .sectionLogo {
    list-style-type: none;
    display: inline-block;
    width: 150px;
    opacity: .8;
    margin: 10px;
    transition: 500ms all;
  }

  .sectionLogo:hover {
    opacity: 1;
    width: 155px;
    margin: 5px;
  }

  .sectionSchoolImage {
    width: 150px;
    margin-top: 25px;
    transition: 500ms all;
  }

  .sectionSchoolImage:hover {
    width: 155px;
    margin-top: 20px;
  }

  #map {
    margin-top: 50px;
    height: 400px;
    width: 600px;
  }

  .footer {
    background-color: rgba(25, 25, 25, 1);
    width: 100vw;
    height: 100px;
    left: 0;
    margin-top: 70px;
  }

  .footerList {
    margin: 30px 0px 20px 0px;
  }

  .footerText {
    color: rgb(216, 210, 156);
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    margin-right: 25px;
    display: inline;
    list-style-type: none;
    transition: 500ms all;
  }

  .footerText:hover {
    font-size: 26px;
    margin-right: 23px;
  }
}
