/*MEDIA QUERIES*/




/*TEXT*/

p {
  font-family: Georgia, 'Times New Roman', Times, serif;
}

h1 {
  font-weight: bold;
  font-size: 80%;
}


/*LINKS*/

a {
  text-decoration: none;
  color: red;
}


/*FOUNDATION*/

body {
  background-color: rgb(0, 0, 0);
  position: relative;
  margin: 0;
  padding: 0;
}


/*GRIDS*/

@media only screen and (orientation: landscape) {
  #grid-container {
  display: grid;
  grid-template-columns: 10% auto;
  grid-template-rows: 97% 3%;
  width: 100%;
  height: 100%;
  position: fixed;
  }

  .grid-header {
  grid-area: 1 / 1 / 3 / 2;
  background-color: rgb(39, 0, 0);
  max-width: fit-content;
  }

  .grid-main {
    grid-area: 1 / 2 / 2 / 3;
    margin: auto;
  }

  .grid-footer {
    grid-area: 2 / 2 / 3 / 3;
    margin: auto;
  }
}

@media only screen and (orientation: portrait) {
  #grid-container {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 5% 92% 3%;
    width: 100%;
    height: 100%;
    position: fixed;
  }

  .grid-header {
    grid-area: 1 / 1 / 2 / 2;
    background-color: rgb(39, 0, 0);
  }

  .grid-main {
    grid-area: 2 / 1 / 3 / 2;
    margin: auto;
  }

  .grid-footer {
    grid-area: 3 / 1 / 4 / 2;
    margin: auto;
  }
}



/*HEADER STYLING*/

@media only screen and (orientation: landscape) {
  .header-content {
    display: block;
    width: 80%;
    height: 30%;
    margin: auto;
    margin-top: 15%;
    padding: 0;
    text-align: center;
    color: white;
    font-size: max(11pt, 80%);
  }

  .grid-header img {
    width: 50%;
    margin-top: 10%;
  }

  .header-content ul {
    display: inline;
    list-style: none;
    text-decoration: none;
    margin: auto;
    line-height: 200%;
  }
}

@media only screen and (orientation: portrait) {
  .header-content, .logo {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: auto;
    padding: 0;
    color: white;
    font-size: 11pt;
  }

  h1 {
    visibility: hidden;
  }

  .grid-header img {
    height: 70%;
    margin: auto 3%;
  }

  .header-content ul {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    width: 50%;
    gap: 30%;
    list-style: none;
    text-decoration: none;
    margin: auto;
    margin-right: 10%;
  }
}

.header-content li {
  padding: 1%;
  text-wrap: nowrap;
}


/*MAIN STYLING*/

.message {
  font-size: max(12pt, 20%);
  text-align: center;
  width: 60%;
  margin: auto;
  color: white;
}


/*FOOTER STYLING*/

footer {
  color: rgb(110, 110, 110);
  font-size: max(7pt, 0.5vw);
}

