/* 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." */

.header {
  background-color: #f1f1f1;
  text-align: center;
  padding: 10px;
}

body {
  background-color: white;
  color: pink;
  font-family: Verdana;
}

.container {
    display: grid;
    grid-template:
      "header header" /* row 1 */
      "sidebar main"  /* row 2 */
      "footer footer" /* row 3 */
      / 1fr 2fr;  /* column widths (1fr = one fraction) */
    grid-gap: 10px;   /* (optional) space between areas */
  }
  
  /* assign your elements to the areas you defined in the grid-template rule: */
  header { grid-area: header; }
  aside { grid-area: sidebar; }
  main { grid-area: main; }
  footer { grid-area: footer; }