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

.container {
  display: grid; 
  grid-template-columns: 850px;
  grid-template-rows: 152px 800px;
  gap: 50px;
  border: 1px solid red;
}

.header-box {
  border: 1px solid green;
  grid-template-columns: 100px 100px 100px 100px;
  grid-template-rows: 152px;
  gap: 50px;
  border: 1px solid blue;
}

.body-box {
  display: grid;
  border: 1px solid orange;
}
