*{
    font-family:sans-serif;
}
#productGrid{
    display:grid;
    padding:2%;
    grid-template-columns: repeat(3,30%);
    justify-content: center;
    grid-gap:2%;
    margin-bottom: 700px;
    
}
#productGrid>div{
    border:0.2px solid silver;  
    text-align: center;
    transition: transform 0.7s;
}
#productGrid>div:hover{
    transform: scale(1.12);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    
    
}
#productGrid img{
width:100%;
height: 300px;
}
#cartbtn{
    padding:10px 100px 10px 100px;
    background-color: #27865f;
    border:none;
    color:white;
    font-weight: bolder;
    margin-bottom:10px; 
    
}
#cartbtn:hover{
    cursor:pointer;
}