.gradient-background{
    /* gradient linear  */
    background: linear-gradient(rgba(255, 255, 255, 0.07),rgba(0,0,0,0.09));
    border-radius:20px;
}

body{
    font-family: Roboto, sans-serif;
    font-weight: 300;
}

.product-card:hover{
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
    transform: scale(1.01);
    transition: all 0.1s ease-in-out;
    cursor: pointer;
}