body {
    font-family: 'Arial', sans-serif;
    margin: 30px;
    padding: 0;
    background-color: #e8f5e9;
    color: #333;
    font-size: large;
}
.menu-container{
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 100;
    margin: 10px;
}
p{
font-size: large;
}
h3{
    display:inline-block;
    /* border-bottom: 2px solid green; */
    color: green;
}
h1,h2{
    display: inline-block;
    border-bottom: 2px solid green;
    color: green;

}
.special img {
    float: left;
    width: 25%;
    border-radius: 50%;
    margin: 0 10px;
    margin-top: 60px;
}
.special{
    margin-bottom: 100px;
}
/* contact */
.feedback{
margin-top: 5px;
text-align: center;
border-bottom: 40px;
}
.feedback a{
    border-bottom: 50px;
}
.hd{
    background-color: green;
     color: aliceblue;
     border-radius: 30px;
     padding-left: 20px;
     padding-right: 20px;
}
.feedback-btn {
    display: inline-block;
    background-color:green;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 20px;
}
.feedback-btn:hover {
    background-color: #0056b3;
}
/* Pop-up form styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}
.popup-content h2 {
    margin-bottom: 20px;
    color: #333;
}
.popup-content label {
    display: block;
    margin: 10px 0 5px;
    text-align: left;
}
.popup-content input, 
.popup-content textarea, 
.popup-content button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.popup-content button {
    background-color:green;
    color: white;
    border: none;
    cursor: pointer;
}
.popup-content button:hover {
    background-color: green;
}
.popup-content .close-btn {
background:green;
    color:white;
    padding:5px 5px;
    width: 30px;
    height: 30px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 15px;
    font:bold;
    margin-left: 90%;
}
.popup-content .close-btn:hover{
    background: rgb(11, 231, 3);
    color:green;
}
@media screen and (max-width:500px) {

    body{
        margin: 0px;
        padding: 0;
        float: left;
        display: block;
    }
    .menu-section {
        display: inline;
        justify-content: space-around;
        flex-wrap: wrap;
    }    
    .menu-container{
display: block;
    width: 80%;
    margin-right: 0;
    margin-left: 20px;
    padding: 0;
    border-radius: 15px;
}
.menu-container h3{
    text-align: center;
}
    h1{
        text-align: center;
    }
    .menu-category {
        width: 88%;
        padding-right:100px ;
}
.special-items img {
    width: 80%;
    border-radius: 50%;
    margin: 0 10px;
 }
 h4{
    font-size: small;
 }
 .lefted{
padding: 0%;
display: hidden;
 }
 .right{
display: block; 
}
.feedback{
    border-bottom: 20px;
    position:relative;
    display: block;
}
h3{
  align-items: center;
}

}