body, html {
  height: 100vh;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body {
  display: -ms-grid;
  display: grid;
  background-color: black;
  margin: 0px;
  -ms-grid-columns: 100vw;
      grid-template-columns: 100vw;
  -ms-grid-rows: 10vh 90vh auto auto auto;
      grid-template-rows: 10vh 90vh auto auto auto;
      grid-template-areas: "header" "icon" "article1" "article2" "article3";
}

header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: header;
  height: 100vh;
  background-image: url("../img/backdrop.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
}

section:nth-of-type(1) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: icon;
}

section:nth-of-type(1) img {
  position: absolute;
  left: 10px;
  top: 10px;
  height: 10%;
}

section:nth-of-type(2) {
  grid-area: navBar;
}

section.content {
  color: #e7e7e7;
  padding-left: 10vw;
  padding-right: 10vw;
  padding-top: 5vh;
  padding-bottom: 5vh;
  text-align: center;
}

section.content h3 {
  font-size: 2em;
  color: #e7e7e7;
  text-align: center;
}

section.content p {
  font-size: 1.5rem;
  text-align: left;
}

section.content img {
  height: 100px;
}

section:nth-of-type(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: article1;
  background-color: black;
}

section:nth-of-type(3) td {
  padding: 20px;
}

section:nth-of-type(4) {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  grid-area: article2;
  background-color: #191919;
}

section:nth-of-type(5) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  grid-area: article3;
  background-color: black;
}

@media (orientation: landscape) {
  header {
    background-position: center;
  }
}

@media (orientation: portrait) {
  header {
    background-position-x: -75px;
  }
}

@media only screen and (min-width: 768px) {
  header {
    background-image: url("../img/backdrop2.jpg");
  }
  body {
    -ms-grid-columns: 100vw;
        grid-template-columns: 100vw;
    -ms-grid-rows: 10vh 90vh auto auto auto;
        grid-template-rows: 10vh 90vh auto auto auto;
        grid-template-areas: "header" "icon" "article1" "article2" "article3";
  }
  .nav-list {
    left: 50%;
  }
  section.content {
    color: #e7e7e7;
    padding-left: 10vw;
    padding-right: 10vw;
  }
  section.content h3 {
    font-size: 3em;
    color: #e7e7e7;
    text-align: center;
  }
  section.content p {
    font-size: 2em;
  }
}

@media only screen and (min-width: 600px) {
  html {
    font-size: 10px;
  }
}

@media only screen and (min-width: 800px) {
  .nav-toggle-btn {
    height: 7rem;
    width: 7rem;
  }
  .overlay {
    height: 6rem;
    width: 6rem;
  }
  .nav-icon-bar {
    margin-top: 3.5rem;
  }
  .nav-links:link,
  .nav-links:visited {
    font-size: 3rem;
  }
}
/*# sourceMappingURL=main.css.map */