.filter-container {
    max-width: 800px;
    width: 100%;
    margin: auto;
}

section {
    padding: 2rem 1rem;
    display: grid;
}

section article {
    display: grid;
}

section header {
    display: grid;
}

.bg-2 {
    background-color: #36454F;
    border-radius: 5px;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.filters a {
    padding: 0.2rem 0.8rem;
    font-size: 90%;
    color: white;
    border-radius: 100px;
    border: 2px solid white;
    cursor: pointer;
    transition: 0.2s ease;
    text-decoration: none;
    width: max-content;
}
.filters a:hover, a .active {
    background-color: white;
    color: #36454F;
}