body {
    background-image: url("/assets/bgs/splash.jpg");
    background-repeat: repeat;
    color: white;
    margin: 30px;
    font-family: "Lucida Console";
    font-size: 16px;
}

.container {
display: grid;
grid-template:
"header header"
"sidebar main"
"footer footer";
grid-template-columns: 1fr 1.5fr;
padding: 10px;
margin-left: 70px;
margin-right: 70px;
background-color: black;
 border: 1px solid red;
}

@media (max-width: 800px) {
  .container {
    grid-template:
      "header"
      "main"
      "footer";
  }  
}

.header { 
    grid-area: header;
}

.aside { 
   grid-area: sidebar;
  padding: 2px;
  height: 500px;
}

.main {
  grid-area: main;
  padding: 5px;
  height: 500px;
  max-height: 500px;
      overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
div::-webkit-scrollbar {
    display: none;
}

.footer {
  grid-area: footer;
}