h1{
    text-align: center;
    color: rgb(110, 22, 52);
    background-color: rgb(238, 185, 215);
}
h2{
    color: rgb(110, 22, 52);
    padding-top: 200px;
    text-align: left;
    font-size: 30px;
    font-style: oblique;
    text-align: center;
}
h3{
    color: rgb(110, 22, 52);
    text-align: left;
    font-style: oblique;
    text-align: center;
}
h4{
    color: rgb(231, 73, 126);
    text-align: left;
    font-size: 20px;
    font-style: italic;
    text-align: center;
}
.img1{
    height: 40%;
    width: 30%;
    object-fit: cover;
    transition: transform 1s ease-in-out;
    float: left;
    padding-left: 100px;
    padding-top: 10px;
    padding-bottom: 100px;
    
}
.img1:hover{
    transform: scale(1.1);
    box-shadow: 200px black;
}
.img2{
    /*height: 800px;
    width: 800px;
    float: right;
    padding-right: 100px;*/
    height: 40%;
    width: 30%;
    object-fit: cover;
    transition: transform 1s ease-in-out;
    float: right;
    padding-right: 100px;
    padding-top: 100px; 
    padding-bottom: 100px;
}
.img2:hover{
    transform: scale(1.1);
    box-shadow: 200px black;
}
body{
    background-color: rgb(253, 235, 245);
}
/*h1{
text-align: center;
color: black;
padding-top: 50px;
}
h2{
color: rgb(110, 22, 52);
padding-top: 145px;
text-align: left;
font-size: 30px;
font-style: oblique;
text-align: center;
}
h4{
color: rgb(110, 22, 52);
padding-top: 40px;
text-align: left;
font-size: 20px;
font-style: italic;
text-align: center;
}
.img1{
height: 345px;
width: 460px;
float: left;
padding-left: 10px;
}
.img2{
height: 345px;
width: 460px;
float: right;
padding-right: 10px;
}
body{
background-color: #c9a5b6;
}*/
/*products shopping list*/
    .recom{
        color:rgb(110, 22, 52);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    /*.recom{
        color:rgb(110, 22, 52);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        padding-top: 100px;
    
    }*/
    .product-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        padding: 20px;
        padding-right: 100px;
    }
    
    .product {
        max-width: 300px;
        margin: 20px;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        text-align: center;
        background-color: whitesmoke;
        transition: background-color 0.5s ease-in-out;
    }
    .product:hover{
        background-color: rgb(246, 234, 248);
    }
    
    .product img {
        max-width: 90%;
        height: auto;
    }
    
    h2 {
        margin: 10px 0;
        font-size: 1.5rem;
    }
    p {
        margin: 5px 0;
    }
    
    button {
        background-color: #ff3366;
        color: #fff;
        border: none;
        padding: 8px 16px;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    button:hover {
        background-color: #ff0055;
    }