body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "DM Sans", sans-serif;
    background-color: #D1CFE2;
}

.product-container {
    display: flex;
    max-width: 100%;
    width: 80%;
    margin: 0 auto;
    margin-top: 40px;
    background-color: #D4AFB9;
    border-radius: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

#product-card {
    display: inherit;
    justify-content: center;
    align-items: center;
    font-size: 0.5rem;
    padding: 10px;
    background-color: #9CADCE;
    margin: 10px;
    border-radius: 5px;
    flex-direction: column;
    box-shadow: 0px 10px 14px -10px rgba(125,125,125,1);
    transition: 0.3s;
    text-align: center;
}

#product-card:hover {
    transform: scale(1.02);
    cursor: pointer;
    box-shadow: 0px 10px 14px -5px rgba(125,125,125,1);
}

#product-card img {
    width: 150px;
}

.filter-container {
    display: flex;
    justify-content: center;
    background-color: #D4AFB9;
    max-width: 100%;
    width: 80%;
    margin: 0 auto;
    margin-top: 20px;
    border-radius: 10px;
}

#filter {
    display: flex;
    list-style: none;
    text-decoration: none;
    gap: 20px;
    font-size: 1.5rem;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10 auto;
    padding: 0;
}

#filter li {
    transition: 0.3s;
    cursor: pointer;;
}

#filter li:hover {
    color: #6688cd;;
}