.filters ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
  padding: 0;
}

.filters ul li {
  background: white;
  padding: 5px 20px;
  margin: 5px;
  border-radius: 50px;
  color: #363636;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.15em;

  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, .4));
}

.grid-container {
  width: 100%;
}


.active {
  background: #363636;
  color: white;
}

.filters ul li:active {
  background: #363636;
  color: white;
}

.filters ul li.active {
  background: #363636;
  color: white;
}

@media (min-width: 650px) {
  .grid-container {
    width: 95%;
  }
}