* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
        sans-serif;
}

main {
    border-bottom: 0;
    background-color: #e9e9e9;
    background-image: url("../images/wholesale.jpeg");
    min-height: 100dvh;
}
.product-page {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 5vw;
    padding-top: 0;
}
.product-page h1 {
    color: #fff;
    text-decoration: underline;
}
.product-container {
    margin-top: 1rem;
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px;
    /* flex: 1; */
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    /* justify-content: center; */
}
.product {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    width: 200px;
    height: 200px;
    border: 2px solid #000;
    padding: 1rem;
    border-radius: 8px;
}

@media screen and (max-width: 768px) {
    .product-container {
        justify-content: center;
    }
    .product {
        flex: 1;
    }
}
