*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: rgb(193, 193, 153);
    height: 100vh;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-card{
    background-color: #fff;
    max-width: 390px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    align-items: center;
}
.bg-image img{
    width: 100%;
      height: auto;
      object-fit: cover;
}
 
.product{
    margin: 20px;
}
.product-type{
    color:grey;
    letter-spacing: 7px;
    margin-bottom: 10px;
}
.product-name{
    font-size: 45px;
    margin-bottom: 10px;
}
.product-description{
    color: rgb(86, 81, 81);
    font-size: 19px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.pricing{
    margin-bottom: 10px;
}
.promo-price{
    color: green;
    
}
.old-price{
    color: grey;
    text-decoration: line-through;
    margin: 10px;
    font-size: 17px;
    justify-content: center;
     
}
button{
    background-color: green;
    color: white;
    border: none;
    padding: 12px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
    transition: background-color 0.1s;
}
button:hover{
    background-color: rgb(73, 139, 73);
}
@media (min-width:600px) {
    body{
        background-color:lightblue;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        
    }
    .product-card{
        max-width: 600px;
        width: 100%;
        display: flex;
        border-radius: 20px;
        overflow: hidden;
    }
   
    .bg-image img{
     height: 400px;
     width: 110%;
   
    }
    .product{
        padding: 15px;
    }
}