* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  
    
}

    .product-list {
        display: flex;
        justify-content: space-around;
        
    }
    
    .product {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        width: 30%;
        text-align: center;
    }

body{
    background-color: green;
}