/* General Settings */
body {
    background-image: url(assets/grid_bg.png);
    max-width: 1150px;
    margin: auto;
    overflow-x: hidden;
}

img {
  max-inline-size: 100%;
}

p, .link-list li {
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
}

a:link {
  color: #0827BE;
}

.update-text {
  display: inline-block;
}

/* Containers */
.header-container, .body-container, .footer-container {
    display: flex;
    flex-direction: row;
}

/* Header */
.header-container {
    background-color: #000026;
    min-height: 120px;
    border-bottom: 1rem solid #22222B;
    align-items: center;
}

.header-logo {
    margin-top: 10px;
    margin-left: 10px;
}

/* Footer */
.footer-container {
  width: 166%;
  height: 140px;
  background-color: black;
  border-top: 1rem solid #22222B;
  justify-self: center;
  justify-content: center;
  display: block;
  bottom: 0;
  padding-top: 0.5em;
}

.footer-text {
  color: white;
  text-align: center;
  font-family: 'Play', Arial, Helvetica, sans-serif;
  font-size: 18px;
  display: block;
}


/* Body Container */

.body-container {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Sidebar */

.m-sidebar {
    z-index: 5;
    display: none;
}


.sidebar {
    background-color: #00003D;
    min-height: 100%;
    width: 18%;
}

.nav-items {
    display: grid;
    gap: 5px;
    width: 80%;
    margin-left: -0.78rem;
}

.nav-category {
  color: white;
  font-family: 'Roboto Condensed', Arial;
  font-weight: bold;
  font-size: 18px;
  background-color: black;
  padding: 5px;
  margin-bottom: -2px;
  border-left: solid 4px #22222B;
}

.nav-items a {
    color: white;
    font-family: 'Roboto Condensed', Arial;
    font-size: 15px;
    list-style: none;
    text-decoration: none;
    background-color: #0C0C51;
    height: 1.5rem;
    
    display: flex;
    justify-content: start;
    align-items: center;
    padding-left: 10px;
}

.nav-items a:hover {
    background-color: #030342;
}

.top-section {
    margin-top: 15px;
}

/* Main Page */

.main-page {
    background-color: #E0E0E0;
    min-height: 100%;
    width: 82%;
    outline: 10px solid #00003D;
    outline-offset: -10px;
}

.page-header {
    width: 100%;
    height: 35px;
    background-color: #22222B;
    display: flex;
    white-space: nowrap;
}

.page-content {
  margin: 2em;
}

/* Page Header */

.page-tab {
  background-color: #00003D;
  height: 100%;
  width: 13em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-name {
  color: white;
  z-index: 2;
  font-family: 'Russo One';
  font-weight: normal;
  font-size: 23px;
  padding-top: 2px;
  margin-left: -0.5em;
}

.slope {
  width: 0;
  height: 0;
  border-top: 35px solid #00003D;
  border-right: 50px solid transparent;
  z-index: 1;
}

.top-header {
  background-color:#00003D;
  height: 50%;
  width: 100%;
  margin-left: -1.5em;
}

/* Sidebar Mobile */
@media screen and (max-width: 767px) {

  body {
    width: 100%;
  }

  .body-container {
    margin-top: 0px;
  }
  .header-container {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .header-logo {
    width: 92%;
    height: auto;
  }

  .sidebar {
    display: none;
  }

  .m-sidebar {
    width: 100%;
    height: 50px;
    background-color: #00003D;
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .footer-container {
    width: 100%;
  }

  .footer-text {
    font-size: 14px;
  }

/* Hamburger */

  #hamburger_container {
    background-color: transparent;
    margin-top: 12px;
    border: 0;
  }

  #hamburger_container:hover {
    cursor: pointer;
  }

  #hamburger_button {
    width: 50px;
  }

/* Close Button */

#close_container {
    background-color: transparent;
    margin-top: 3px;
    border: 0;
    display: none;
  }

  #close_container:hover {
    cursor: pointer;
  }

  #close_button {
    width: 50px;
  }

/* Other */

  .body-container {
    display: flex;
    flex-direction: column;
  }

  .main-page {
    width: 100%;
    min-height: 667px;
    overflow-x: hidden;
  }

  #hidden_menu {
    background-color: #00003D;
    position: fixed;
    min-height: 100vh;
    width: 100%;
    margin-top: 50px;
    border-top: solid 3px #000026;
    display: none;
    z-index: 5;
    overflow-y: scroll;
  }

  .m-nav-items {
    display: grid;
    gap: 2px;
    margin-left: -12px;
    margin-top: 0px;
    overflow-y: scroll;
  }

  .m-nav-items a {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    list-style: none;
    text-decoration: none;
    background-color: #0C0C51;
    height: 2rem;
    text-align: center;
    width: 90%;
    padding-top: 10px;
    overflow-y: scroll;
  }

  .m-nav-category {
  color: white;
  font-family: 'Roboto Condensed', Arial;
  font-weight: bold;
  font-size: 20px;
  background-color: black;
  padding: 5px;
  margin-bottom: -2px;
  border-left: solid 4px #22222B;
  width: 86.25%;
  text-align: center;
  }

  /* Page Header */

.page-tab {
  background-color: #00003D;
  height: 100%;
  width: 17em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-name {
  color: white;
  z-index: 2;
  font-family: 'Russo One';
  font-weight: normal;
  font-size: 23px;
  padding-top: 2px;
  margin-left: 0.1em;
}

h1, h2, h3 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  display: inline-block;
  font-size: 1.32em;
}

.heading-tab {
  width: 10px;
  height: 25px;
  background-color: #273AB5;
  display: inline-block;
  margin-bottom: -5px;
  margin-right: 6px;
}


}


@media screen and (min-width: 700px) {

  #hidden_menu {
    z-index: 5;
    display: none;
  }

  h1, h2, h3 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  display: inline-block;
  }

  .heading-tab {
  width: 10px;
  height: 30px;
  background-color: #273AB5;
  display: inline-block;
  margin-bottom: -5px;
  margin-right: 6px;
}

}

#hidden_menu {
    display: none;
  }

/* Construction Pikachu! */
.construction-pikachu {
  display: flex;
  justify-self: center;
  transform: scale(3, 3);
  margin-top: 8em;
}