/* 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 {
  background-color: black;
  color: white;
  font-family: Verdana;
}

.container {
  display: grid;
  grid-template-areas:
    "header header"
    "menu content"
    "footer footer";
  grid-template-columns: 200px 200px 200px 200px 200px;
   grid-template-rows: 200px 200px 200px 200px 200px 200px;
  gap: 5px;
  padding: 5px;
  border: 5px white solid;
  width:1020px;
 margin:auto;
  
}
.container > div {
  padding: 10px;
    border: 5px white solid;
}
.container > .header {
  grid-area: header;
  text-align: center;
    border: 5px white solid;
    grid-row:1/1;
    grid-column:2/5;
}
.container > .main {
  grid-area: main;
    border: 5px white solid;
        grid-row:2/6;
    grid-column:2/5;
}
.container > .left {
  grid-area: left;
    border: 5px white solid;
    grid-row:1/7;
    grid-column:1/1;
    
}
.container > .footer {
  grid-area: footer;
    border: 5px white solid;
    grid-row:6/6;
    grid-column:2/5;
}

.container > .right {
  grid-area: right;
    border: 5px white solid;
    grid-row:1/7;
    grid-column:5/5;
}



