.filter-toggle {
  border: 1px solid orange; 
  border-radius: 5px;
  background-color: orange; 
  color: white;
  padding: 3px;
  margin: 3px;
  cursor: pointer;
  display: inline-block;
}

.filter-toggle.filter-off {
  background-color: transparent;
  color: orange;
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px auto;
  max-width: 800px;
  padding: 20px;
}

.content-container h1 {
  font-size: 2.5em;
  color: #333333;
  margin-bottom: 20px;
}

.things-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: left;
}

.things-list li {
  margin: 10px 0;
  font-size: 1.2em;
  display: flex;
  align-items: center;
}

.things-list li a {
  color: inherit;
  text-decoration: none;
  margin-left: 10px;
}

.things-list li a:hover {
  text-decoration: underline;
}

.orange-text {
  color: #f28b2a;
}

.gray-text {
  color: #7a7b7b;
}

.orange-icon {
  color: #f28b2a;
}

.gray-icon {
  color: #7a7b7b;
}