/* General reset and typography */
body, h2, h3, h4, p {
    margin: 0;
    padding: 0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: small;
    
}

body {
    background: hsla(332, 53%, 82%, 1);

    background: linear-gradient(90deg, hsla(332, 53%, 82%, 1) 0%, hsla(176, 57%, 89%, 1) 100%);
    
    background: -moz-linear-gradient(90deg, hsla(332, 53%, 82%, 1) 0%, hsla(176, 57%, 89%, 1) 100%);
    
    background: -webkit-linear-gradient(90deg, hsla(332, 53%, 82%, 1) 0%, hsla(176, 57%, 89%, 1) 100%);
    
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#E9B7CE", endColorstr="#D3F3F1", GradientType=1 );
}

.header-container {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.logo {
    width: 100px; /* Adjust size as needed */
    margin-bottom: 20px;
}

.header-title h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.header-title h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.header-title p {
    font-size: 1.2em;
}

.products-section {
    padding: 20px;
    text-align: center;
}

.products-section h3 {
    font-size: 2em;
    margin-bottom: 20px;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.product {
    background-color: transparent;

    margin: 10px;
    padding: 10px;
    width: 300px;
    text-align: center;
}

.product img {
    width: 40%;
    height: auto;
    border-radius: 5px;
}

.product h4 {
    font-size: 1.5em;
    margin: 10px 0;
}

.stars {
    font-size: 1.8em;
    color: rgb(0, 0, 0);
    margin: 20px 0;
    
}

.learn-more-button {
    background-color: rgb(0, 0, 0);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1.8em;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.learn-more-button:hover {
    background-color: #c63d7d;
    
    
}



/* Media queries for responsiveness */
@media (max-width: 768px) {
    .header-title h1 {
        font-size: 2em;
    }

    .header-title h2 {
        font-size: 1.5em;
    }

    .header-title p {
        font-size: 1em;
    }

    .product-list {
        flex-direction: column;
        align-items: center;
    }

    .product {
        width: 90%;
    }
}
