*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
p , h1 ,h2 ,span ,h3{
    cursor: auto;
}
html,body{
    overflow-x: hidden;
}
body{
    background-color: rgb(250, 235, 215);
}
.products{
    height: auto;
    padding: 40px;
    display: flex;
    gap: 40px;
}
.product-images{
    display: flex;
}
h3{
    margin-top: 12px;
}
.products .product div p{
    width: 100%;
    margin-top: 30px;
    line-height: 1.8;
}
.products .product-images img{
    width: 90%;
}
img{
    transition: all 0.5s;
    width: 60%;
}
.col-xl-4.col-12.col-xxl-4 span{
    font-weight: bold;
    font-size: 18px;
}
.col-xl-4.col-12.col-xxl-4{
    transition: all 0.5s;
    cursor: pointer;
}
.col-xl-4.col-12.col-xxl-4:hover{
    transform: translateY(-10px);
}
.col-xl-4.col-12.col-xxl-4:hover img{
    filter: drop-shadow(0 0px 5px black);
    transform: scale(1.1);
}

a{
    display: inline-block;
    transition: all 0.3s;
    background-color: black;
    color: white;
    padding-inline: 20px;
    padding-block: 10px;
    border-radius: 25px;
    text-decoration: none;
}
a:hover{
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 15px black;
}