/* Mushroom white: #F0E1CD
   Brown: #1F0900 */

/*GENERAL*/
body {
  padding: 0;
  margin: 0;
  font-family: "Jersey 15", sans-serif;
  background-image: url("images/treesBG.png");
}

p,h1,h2,ol {
  margin: 0;
  padding: 0;
}

.header {
  position: sticky;
  top: 0;
  padding: 10px;
  background: #1F0900;
  color: #F0E1CD;
  display:flex; 
  gap: 5px; 
}

.container {
  margin-top: 100px;
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-left: 5%;
  margin-right: 5%;
  flex-wrap: wrap;
}

/*LEFT COLUMN*/
.leftColumn {
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 25px;
  background-color: #F0E1CD;
  box-shadow: inset 0 0 20px #1F0900; 
}

ol {
  list-style: none;
}

ol li::before {
  content: "";
  display: inline-block;
  width: 20px;     
  height: 20px;       
  background-image: url("https://bettysgraphics.neocities.org/images/plants/mushroom%2020.gif");
  background-size: contain;
  background-repeat: no-repeat;
}

.navList {
  color: #401604;
}


/*CENTER COLUMN*/
.mainContent {
  display: flex;
  flex-direction: column;
  gap: 25px;
  min-width: 400px;
  max-width: 800px;
  background-color: #F0E1CD;
  padding: 10px;
  box-shadow: inset 0 0 20px #1F0900;
}



