.adopt-banner {
    display: flex;
    flex-direction: column;
    background-color: #003b4a;
    width: 80%;
    border-radius: 15px;
    text-align: center;
    color: white;
    margin: auto;
    margin-top: 20px;
    padding: 25px;
}

.adopt-banner p{
    font-size: 18pt;
    justify-content: center;
}

.listings {
    display: grid;
    grid-template-columns: 350px 350px 350px;
    grid-template-rows: 1fr 1fr;
    justify-content: center;
}

.filterDiv a {
    display: block;
    justify-content: space-between;
    overflow: none;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    color: #003b4a;
}

.filterDiv img{
    max-width: 250px;
    height: 300px;
    border-radius: 15px;
    align-self: center;
    justify-content: center;
    object-fit: scale-down;
    background-color: black;
}

.filterDiv ul {
    text-align: left;
}

#filter-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 15px;
}

.filterDiv {
  float: center;
  display: none; /* Hidden by default */
      background-color: #f1f1f1;
    border: 1px solid black;
    border-radius: 15px;
    padding: 25px;
    font-size: 16px;
    text-align: center;
    margin: 15px;
    justify-content: center;
}

.show {
  display: block;
}

.btn {
  border: none;
  outline: none;
  padding: 12px 16px;
  background-color: #f18a00;
  cursor: pointer;
  margin-left: 10px;
  margin-right: 10px;
}

.btn:hover {
  background-color: lightblue;
}

.btn.active {
  background-color: #666;
  color: white;
}

@media screen and (max-width: 768px) {
    .adopt-banner {
        display: flex;
        flex-wrap: nowrap;
    }
    .listings {
        display: flex;
        flex-direction: column;
    }
}