/* 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: #F5E5AB;
  color: black;
   font-family: "Geist Mono", monospace;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.header {
  background-color: #F5E5AB;
  font-color: #591E27;
  font-family: "Geist Mono", monospace;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.leftcolumn {
  float: left;
}

.rightcolumn,{
  float: right
  width: 25%;
}

.middlecolumn {
  width: 50%;
}