/* 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: #fff8e7;
  color: #1b4d3e;
  font-family: Serif;
}
h1 {
  font-size: 32px;
}
h2 {
  font-size: 24px;
}
p {
  font-size: 16px;
}
a {
  color: #960018;
}
.container {
  overflow: hidden;
}

.filterDiv {
  display: none; /* Hidden by default */
}

/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

/* Style the buttons */
.btn {
  background-color: #7f3f00;
  color: #fff8e7;
  cursor: pointer;
  border-color: #7f3f00;
  margin: 2px;
  font-family: Serif;
}

