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

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;
  align-items: center;
  gap: 25px;
  min-width: 250px;
  max-width: 500px;
  background-color: #F0E1CD;
  padding: 10px;
  box-shadow: inset 0 0 20px #1F0900;
}

#title {
  width: 100%;
  background-color: #1F0900;
  color: #F0E1CD;
  text-align: center;
}

/*RIGHT COLUMN*/
.rightColumn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  min-width: 250px;
  background-color: #F0E1CD;
  padding: 10px;
  box-shadow: inset 0 0 20px #1F0900;
}

.aboutMe {
  text-align: center;
}

#pfp {
  max-width: 200px;
  max-height: 200px;
}

.statusUpdates {
  padding: 5px;
  height: 100px;
  background-color: #1F0900;
  color: #F0E1CD;
  overflow: scroll;
}

