* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  height: 100vh;
  background-image: linear-gradient(#2c3e50, #bdc3c7);
}

#container {
  height: 100%;
  display: grid;
  row-gap: 20px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  grid-template-columns: 40px repeat(3, 1fr) 40px;
  grid-template-rows: 60px repeat(3, 1fr) 40px;
  grid-template-areas: ". header header header ." ".   nav   nav   nav   ." ".   nav   nav   nav   ." ".   nav   nav   nav   ." "footer   footer   footer   footer   footer";
}
#container header {
  grid-area: header;
  background-color: gainsboro;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-style: outset;
  border-width: 5px;
  border-color: black;
  width: 100%;
  height: 100%;
}
#container header h1 {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Times New Roman", Times, serif;
  font-size: 3vw;
  font-weight: bold;
  text-transform: uppercase;
}
#container nav.navContainer {
  grid-area: nav;
  display: grid;
  row-gap: 20px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: 50px repeat(3, 1fr);
  grid-template-areas: ".  Loyalist  .  .  .  Heretics  ." "section1  section2  section3  .  section10  section11  section12" "section4  section5  section6  .  section13  section14  section15" "section7  section8  section9  .  section16  section17  section18";
}
#container img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#container h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: gainsboro;
  border-style: outset;
  border-width: 5px;
  border-color: black;
  background-color: gainsboro;
}
#container .Loyalist {
  grid-area: Loyalist;
}
#container .Heretics {
  grid-area: Heretics;
}
#container section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: gainsboro;
  border-style: solid;
  border-width: 5px;
  border-color: black;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Times New Roman", Times, serif;
}
#container section:hover {
  box-shadow: 4px 4px 10px #635985;
}
#container .section1 {
  grid-area: section1;
}
#container .section2 {
  grid-area: section2;
}
#container .section3 {
  grid-area: section3;
}
#container .section4 {
  grid-area: section4;
}
#container .section5 {
  grid-area: section5;
}
#container .section6 {
  grid-area: section6;
}
#container .section7 {
  grid-area: section7;
}
#container .section8 {
  grid-area: section8;
}
#container .section9 {
  grid-area: section9;
}
#container .section10 {
  grid-area: section10;
}
#container .section11 {
  grid-area: section11;
}
#container .section12 {
  grid-area: section12;
}
#container .section13 {
  grid-area: section13;
}
#container .section14 {
  grid-area: section14;
}
#container .section15 {
  grid-area: section15;
}
#container .section16 {
  grid-area: section16;
}
#container .section17 {
  grid-area: section17;
}
#container .section18 {
  grid-area: section18;
}

@media (max-width: 768px) {
  #container {
    grid-template-columns: 10px 1fr 10px;
    grid-template-rows: auto auto auto 40px;
    grid-template-areas: ". header ." ". nav ." ". nav ." "footer footer footer";
    row-gap: 10px;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  header h1 {
    font-size: 6vw;
    text-align: center;
  }
  nav.navContainer {
    display: grid;
    grid-template-columns: repeat(2, 200px);
    grid-auto-rows: 150px;
    justify-content: center;
    gap: 20px;
    grid-template-areas: "Loyalist Heretics" "section1 section2" "section3 section4" "section5 section6" "section7 section8" "section9 section10" "section11 section12" "section13 section14" "section15 section16" "section17 section18";
    overflow-x: auto;
    overflow-y: visible;
  }
  section {
    width: 200px;
    height: 150px;
    font-size: 12px;
  }
  .Loyalist, .Heretics {
    height: 50px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }
  footer {
    grid-area: footer;
    padding: 10px;
    text-align: center;
    background-color: #333;
    color: white;
  }
}/*# sourceMappingURL=AdeptusAstartes.css.map */