

#conTainer
{
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
h1
{
    color:#ec2727;
    font-size: 36px;
    text-align: center;
    font-weight: bold;
    text-shadow: 2px 3px 3px grey;
    margin-bottom: 10px;

}

.gprBtns button
{
    padding: 5px 10px;
    cursor: pointer;
    margin: 0 15px;
    border-radius: 5px;
    
}
.gprBtns button:hover{
   background-color: #ec2727;
   color: #fff;
}
.foodProduct
{
    margin-top: 50px;
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);


}
h4
{
    margin-top: 20px;
    font-size: 20px;

}

h5{
    font-size: 16px;
    color: #ffff;
    background-color: #ce1212;
    border-radius: 20px;
    padding: 5px;
    text-align: center;
    margin-bottom: 15px;

    
}

.foodProduct .product
{
    width: 300px;
    height: 300px;
    border: 1px solid #e6e2e2;
    margin: 150px 20px 60px 20px;
    border-radius: 10px;
    padding: 10px ;
    box-shadow: 3px 3px 3px gray;
    text-align: justify;
}

.product img{
    width: 100%;
    height: 100%;
   
}



@media (max-width: 430px) {
    .menu .foodProduct {
        
        margin: 0 5px;
        padding: 10px 0;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        
    }

}
