body {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-color: #698aff;
  font-family: "Roboto", arial, serif;
  cursor: url("images/cursor.png"), auto;
  font-size: 14px;
  height: 100vh;
  background-image: linear-gradient(90deg, black, darkblue, darkblue, black);
  color: white;
  font-family: Consolas;
  h1 {
    font-size: 3.0rem;
  }
  h2 {
    left: 100px;
    line-height: 200px;
    margin-top: -100px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
    font-size: 1.8rem;
  } 
  a {
    font-size: 1.4rem;
  }
  p {
    line-height: 200px;
    margin-top: 300px;
    font-size: 1.2rem;
    position: center;
    text-align: center;
    top: 50%;
    width: 100%;
  }
  a:link {
    color: white;
    background-color: transparent;
    text-decoration: none;
  }
  a:visited {
    color: white;
    background-color: transparent;
    text-decoration: none;
  }
  a:hover {
    color: midnightblue;
    background-color: transparent;
    text-decoration: underline;
  }
  .container {
    display: grid;
    grid-template-areas:
      "header header"
      "menu content"
      "footer footer";
    grid-template-columns: 1fr 5fr;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 5px;
    border: 3px solid white;
    border-radius: 10px;
  }
  .container div {
     background-image: linear-gradient(180deg, mediumblue, midnightblue);
     padding: 10px;
     border: 3px solid black;
     border-radius: 10px;
     box-shadow: 0px 0px 5px 2px black;
  }
   .container div.header {
    grid-area: header;
    text-align: center;
    padding: 0px;
   }
   .container div.menu {
     grid-area: menu;
     min-width: 160px;
     min-height: 600px;
     text-align: center;
     padding-top: 20px;
  }
   .container div.content {
     grid-area: content;
     padding-left: 60px;
     padding-right: 60px;
     padding-top: 0px;
   }
  .container div.footer {
    grid-area: footer;
    text-align: center;  
    font-size: 1.8rem;
  }
}
