@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  src: url('https://cdn5.onboard.org/assets/kinderhotel-waldhof/fonts/source-sans-pro-regular.woff2') format("woff2");
}

body {
  margin: 0;
  padding: 0;
  font-family: "Source Sans Pro", Roboto, Condensed, sans-serif;
  font-weight: 400;
}

.wrapper {
  margin-bottom: 1rem;
}

.filter-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 16px;
  color: #007978;
}

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

.filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

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