/* 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: rgb(182, 106, 106);
  color: black;
  font-family: Verdana;
}

/**Layout Sizes**/
.layout {
  display: grid;
  grid-template-columns: repeat(24 , [col-start] 1fr);
  gap: 20px;
  width: 90vw;
  margin: auto;
}

header {
  grid-column: col-start 1 / span 24;
}

.left-sidebar {
  grid-column: col-start 1 / span 3;
}

main {
  grid-column: col-start 4 / span 21;
}

footer {
  grid-column: col-start 1 / span 24;
}
/*** Header **/

.header-content {
  background-color: aqua;
  border-style: dashed;
}

.header-title {
  display: flex;
  justify-content: center;
  font-size: 50px;
  margin: 5px;
}

.header-subtitle {
  display: flex;
  justify-content: center;
  font-size: 20px;
  margin: 5px;
}

/*** Nav Bar **/
.left-sidebar{
  background-color: blueviolet;
  padding: 10px;
}

nav h3 {
 margin: 10px 0;

}

nav ul {
  list-style: none;
  margin: 0px 0px 0px -30px;
}

/*** Main Content ***/
.content {
  background-color: cadetblue;
  border: dotted;
  padding: 10px;

}

/*** Footer ***/
footer {
  background-color: aqua;
  border-style: dashed;
  display: flex;
  justify-content: center;
  padding: 10px;
}