.taxonomy-filter {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}
.taxonomy-filter-link {
    padding: 10px 50px;
    background-color: transparent;
    color: #fff;
    border: solid 1px #fff;
    text-decoration: none;
    border-radius: 100px;
    transition: background-color 0.3s ease;
}

.taxonomy-filter-link:hover {
    background-color: rgba(255,255,255,0.3);
    color: #fff;
    transition: background-color 0.3s ease;
}