@font-face {
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 600;
  src: url("https://cdn5.onboard.org/assets/obrist/fonts/rajdhani-v15-latin-600.woff2");
}

body {
  margin: 0;
  padding: 0;
  font-family: "Rajdhani", Condensed, sans-serif;
  font-weight: 600;
}

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

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

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

.filter-list li {
  cursor: pointer;
  color: black;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
  color: white;
  font-size: 16px;
}

.filter-list li.active,
.filter-list li:hover {
  color: #ffde13;
  border-bottom-color: #ffde13;
}

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

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