@font-face {
  font-family: "Segoe UI";
  src: url("https://cdn5.onboard.org/assets/lichtstudio/fonts/SegoeUI-Bold.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Condensed, sans-serif;
  font-weight: 900;
}

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

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

.filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.filter-list li {
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
  color: #323232;
  font-size: 18px;
  text-transform: uppercase;
}

.filter-list li.active,
.filter-list li:hover {
  color: #ceaa51;
}

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

  .filter-list li {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .filter-list {
    gap: 1rem;
    row-gap: 1rem;
  }
}
