body{
    margin: 0px;
    background-color: rgb(192, 192, 10,0.02);
    font-family: 'Bree Serif', serif;
}
header{
    background-color: rgb(219, 219, 133);
    display: flex;
    flex-wrap: wrap;
    padding: 0px 0px;
    margin: 0px 0px;
    border-radius: 10px;
}
table{
    margin: 0px 10px;
    width: 100%;
}
td img{
    padding: 5px 3px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.164);
    transition: all 0.5s;
}
td img:hover{
    transform: scale(1.05);
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.317);
}
.logo{
    margin: auto;
    text-align: left;
}
.heading{
    margin: auto;
    text-align: right;
}
strong {
    color: rgba(226, 62, 3, 0.897);
}
/* header img{
    text-align: left;
    width: 100px;
} */

ul{
    position: sticky;
    top: 0px;
    width: 100%;
    background-color: rgb(236, 236, 185);
    text-align: center;
    width: 100%;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    padding: 4px 0px;
    margin: 0px;
    border-radius: 10px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.317);
    transition: all 0.6s;

}
ul:hover{
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.317);
}
li {
    border-radius: 10px;
    text-align: center;
    margin: 0px 3px;
    padding: 0px 10px ;
    transition: all 0.3s;
}
a{
    border-radius: 10px;
    text-decoration: none;
    color: black;
}
li:hover{
    transform: scale(1.05);
    background-color: rgba(255, 68, 0, 0.582);
    font-weight: 800;
    box-shadow: 2px 2px 4px #888888;
}
main{
    margin: 15px;
}
.welcome{
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}
.dishes{
    width: 350px;
    height: 280px;
    margin: 10px;
    transition: all 0.5s;
}
.dishes:hover {
    transform: scale(1.03);
}
.section2{
    text-align: center;
}
.alldishes{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.form{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.feedback{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 50px 5%;
}
.suggestion{
    font-size: 20px;
}
footer{
    background-color: rgb(69, 69, 69);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}
footer a{
    font-family: 'Times New Roman', Times, serif;
    text-decoration: none;
    padding: 10px;
    text-align: center;
    color: white;
}