
body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
}

.product-card-container {
    font-family: "Montserrat", sans-serif;
    display: flex;
    gap: 50px;
    /* background-color: aquamarine; */
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 200px;
    }
        
.product-card {
    font-family: "Montserrat", sans-serif;
    width: 200px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-color: white;
    }
        
h2 {
    font-family: "Montserrat", sans-serif;
    margin-bottom: 10px;
    }

button {
    font-family: "Montserrat", sans-serif;
    background-color: white;
    border: none;
    cursor: pointer;
}