@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("https://cdn5.onboard.org/assets/haslingerhof/fonts/roboto-condensed-v25-latin-300.woff2") format("woff2");
}

body {
  margin: 0;
  padding: 0;
  font-family:
    Roboto Condensed,
    sans-serif;
}

.wrapper {
  display: flex;
  justify-content: center;
}

.filter-container {
  width: 100%;
  max-width: 1200px;
  padding: 0px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0rem 2rem;
}

.filter {
  width: 100%;
  padding: 10px;
  border: none;
  background: none;
  font-weight: 300;
  font-size: 16px;
  color: #d7b46a;
  border: 1px solid #d7b46a;
}

@media only screen and (min-width: 640px) {
  .filter-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .filter {
    width: auto;
    min-width: 210px;
  }
}

.filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.filter-list li {
  cursor: pointer;
  color: black;
}
.filter-list li.active,
.filter-list li:hover {
  color: #d7b46a;
}
