/* 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: #260d1c;
  color: white;
  height: 100%;
}

.primary {
  color: #260d1c;
}

.primary-light {
  color: #e4dbba ;
}

.container {
  display: flex;
  flex-direction: column;
  height: 609px;
  margin: 50px 150px;
}


.content-container {
  display: flex;
  justify-content: center;
  font-size: 16px;
}

.header {
  font-size: 45px;
  text-align: center;
}

.header h1{
  font-style: italic;
  font-weight: 900;
  margin: 0px;
}

.sidebar-left {
  background-color: #e4dbba;
  float: left;
  height: 500px;
  width: 175px;
  border: solid 5px #4f3a54;
  border-radius: 15px;
  padding: 7px;
}

.main {
  background-color: #e4dbba;
  float: left;
  width: 875px;
  margin: 10px;
  border: solid 5px #4f3a54;
  border-radius: 15px;
  padding: 7px;
}

.sidebar-right {
  background-color: #e4dbba;
  float: left;
  height: 500px;
  width: 175px;
  border: solid 5px #4f3a54;
  border-radius: 15px;
  padding: 7px;
}

.footer {
  height: 100px;
  font-size: 14px;
}
