/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

  body {
    font-family: "Times New Roman", serif;
    background: linear-gradient(to bottom right, black, black, black, green, lime);
    min-height: 100vh;
    color: greenyellow;
    max-width: 600px;
    margin: 0 auto;
  }
  @font-face {
    font-family: zeroes_two; /* set name */
    src: url(fonts/zeroes_two.woff); /* url of the font */
  }
  @font-face {
    font-family: w95f;
    src: url(fonts/w95f.woff) format("woff");
  }
  h1 {
    font-family: zeroes_two, sans-serif;
    background: linear-gradient(to bottom right, transparent, olivedrab, olive);
    border: 3px solid lime;
    border-radius: 10px;
    padding: 5px;
    color: greenyellow;
  }
  h2 {
    font-family: zeroes_two, sans-serif;
    background: linear-gradient(to bottom right, transparent, olivedrab, olive);
    border: 3px solid lime;
    border-radius: 10px;
    padding: 5px;
    color: greenyellow;
  }
  footer {
    font-family: w95f, sans-serif;
    color: greenyellow;
  }
  .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .navlist {
    top: 150px;
    left: max(10px, calc(50% - 550px));
    margin: 0;
    width: 100px;
    background: linear-gradient(to bottom, transparent, olivedrab, olive);
    position: fixed;
    height: 450px;
    overflow-x: hidden;
    border: 3px solid lime;
    border-radius: 10px;
    padding: 5px;
    font-family: zeroes_two, sans-serif;
    z-index: 1;
  }
  .rightbox {
    font-family: w95f, sans-serif;
    font-size: 18px;
    top: 150px;
    right: max(10px, calc(50% - 675px));
    margin: 0;
    width: 275px;
    background: linear-gradient(to bottom, transparent, olivedrab, olive);
    position: fixed;
    height: 300px;
    overflow-x: hidden;
    border: 3px solid lime;
    border-radius: 10px;
    padding: 5px;
    z-index: 1;
  }
  .bigtextbox {
    font-family: w95f, sans-serif;
    font-size: 22px;
    background: linear-gradient(to bottom right, transparent, olivedrab, olive);
    border: 3px solid lime;
    border-radius: 10px;
    padding: 5px;
    color: greenyellow;
  }
  .textbox {
    font-family: w95f, sans-serif;
    font-size: 16px;
    background: linear-gradient(to bottom right, transparent, olivedrab, olive);
    border: 3px solid lime;
    border-radius: 10px;
    padding: 5px;
    color: greenyellow;
  }
  .gridbox {
    font-family: w95f, sans-serif;
    display: grid;
    grid-template-columns: auto, auto, auto
    padding: 5px;
    color: greenyellow;
  }
  .gridbox div {
    background: linear-gradient(to bottom right, transparent, olivedrab, olive);
    border: 3px solid lime;
    border-radius: 10px;
    padding: 5px;
    font-size: 16px;
    text-align: center;
  }
  .gridbox img {
    max-height: 250px;
    border: 3px solid orange;
    border-radius: 3px;
  }
  a {
    color: orange;
  }
  a:hover {
    color: purple;
  }