/* CSS Document */
#productlist {
    padding: 0 10px;
}
.products {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.product {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 30px 0;
    box-shadow: 0 0 10px 5px var(--accent-color-light);
    border-radius: 10px;
    padding:10px;
}
.product img {
    border-radius:10px;
    max-width: 100vw;
}
.product .btn {
    display: inline-block;
    background: var(--accent-color);
    text-align: center;
    color: white;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
}
@media only screen and (min-width: 600px) {
    .products {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1vw;
    }
}
@media only screen and (min-width: 1024px) {
   
}