/* 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: darkgoldenrod;
  color: linen;
  font-family: "Oxygen", veranda, sansserif; 
}

h1 {
  background-color: darkgreen;
  color: darkviolet;
  text-align: center;
  font-size: 35px;
  font-style: italic;
  height: 70px;
  vertical-align: bottom;
}

li {
 font-weight: bold;
 color: black;
}

 .container {
  display: grid;
  grid-gap: 10px;
  grid-template:
    "header header"
    "nav main about"
    "footer footer"
    / 200px 1fr 100px;
}

header { grid-area: header; }
nav { grid-area: nav; }
main { grid-area: main; }
footer { grid-area: footer; }
aside {grid-area: about; } 