@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body{
    font-family: "Roboto", sans-serif;
}
.product-show{
    display: flex;
    gap:20px;
    padding: 10px;
    flex-wrap: wrap;
   

}
img{
    max-width:100%;
   
}
.product-card{
    min-width: 200px;
    width: calc(25% - 20px);
    padding: 20px;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.5);
    text-align: center;
}
/* labtops */
@media(max-width:1200px){
    .product-card{
        width: calc(33% - 20px);
    }
}
/* tablates */
@media(max-width:768px){
    .product-card{
        width:calc(50% - 20px);
    }
}
/* phones */
@media(max-width:480px){
    .product-card{
        width: 100%;
    }
}
