body{
    background-color:aquamarine;
    overflow-x: hidden;
}
header{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        color: black;
        font-family: Arial;
        box-shadow: 0 10px 10px;
        border-radius: 30px;
}
header .food span{
    font-family:Showcard Gothic;
    font-size: 20px;
}
header nav{
    display: flex;
    gap: 20px;
    align-items: center;   
}
header nav .logo img{
    width: 120px;
    margin: 20px 0;
    position: relative;
    left: -45%;
    cursor: pointer;
}
header nav ul{
    list-style: none;
}
header nav ul li{
    display: inline-block;
    margin: 0 10px;
}
header nav ul li a{
    color: black;
    text-decoration: none;
    transition: 0.3s;
}

header nav ul li a.action{
    color: #facc22;
}
header nav ul li a:hover{
    color: #facc22;
}
header nav .food{
    display: flex;
    font-weight: bold;
    margin-left: 20px;
}
header nav .top{
    display: flex;
    margin-left: 250px;
}
.top a{
    margin-left:20px;
}

header nav .login{
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: -30px;
    margin-left: 120px;
}

.top{
    display: flex;
    gap: 50px;
    font-weight: bold;
    margin-left: 20px;
}
.order{
    display: flex;
    margin-left: 50px;
}
img{
    display: flex;
    border-radius: 30px;
}
a{
    text-decoration: none;
    color: black;
    font-weight: bold;
}
p{
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-left: 60px;
    text-align: justify;
    line-height: 23px;
}
button{
    display: flex;
    background-color: black;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    margin-left: 100px;
    animation: animate 5s linear infinite;
    animation-timing-function: ease-in-out;
    animation-delay: 1s;
    margin-top: 30px;
}

@keyframes animate{
    0%{
        transform: scale(1.1);
    }
    50%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.1);
    }
}


/*Banner*/

.bannerbg{
    width: 100%;
    height: 50vh;
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)) , url(images/bannerbg.jpeg);
    background-size: cover;
    background-position: center;
}

.bannerbg h1{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #fff;
    position: relative;
    top: 50%;
}

.bannerbg h1 span{
    color: #facc22;
    margin-left: 15px;
}


/*Menu*/


.menu{
    display: flex;
    gap: 50px;
    font-weight: bold;
    font-size: 20px;
}
.h1 h1{
    margin-left: 650px;
    font-size: 50px;
}
.h1 span{
    color: orange;
}
.menu .box{
    width: 95%;
    margin: 45px auto 0 auto;
    display: grid;
    grid-gap: 30px 10px;
    grid-template-columns: 1fr 1fr 1fr;
   
}

.menu .box .card{
    background-size: cover;
    background-position: center;
    margin: 0 auto;
    width: 450px;
    height: 575px;
    text-align: center;
    cursor: pointer;
    padding: 20px 0;
    border-radius: 10px;
    box-shadow: 3px 3px 10px black;
}

.menu .box .card .img{
    margin: 0 auto;
    width: 420px;
    height: 300px;
    margin-bottom: 15px;
    box-shadow: 0 0 8px black;
    border-radius: 30px;
}

.menu .box .card .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.menu .box .card .text h2{
    font-size: 30px;
    margin-bottom: 15px;
}

.menu .box .card .text p{
    line-height: 21px;
    margin-bottom: 15px;
    margin: 0 auto;
    width: 400px;
}

.menu .box .card .text .icon{
    color: #facc22;
    margin: 8px 0;
}

.menu .box .card .text .price{
    font-weight: bold;
    font-size: 20px;
    padding: 8px 0;
    margin-left: 45px;
    text-align: center;
}

.menu .box .card .text .price sub{
    margin-left: 5px;
    color: #6d6a6a;
    font-size: 13px;
}
.btn{
    margin-left: 70px;
}

/*Footer*/

footer{
    width: 100%;
    padding: 30px 0 0 20px;
    background: #facc22;
    margin-top: 40px;
    margin-left: -10px;
}

footer .footer_main{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

footer .footer_main .footer_tag{
    text-align: center;
    
}
footer .footer_main .footer_tag h2{
    color: #000;
    margin-bottom: 25px;
    font-size: 30px;
}

footer .footer_main .footer_tag p{
    margin: 10px 0;
    margin-left: 90px;

}

footer .footer_main .footer_tag i{
    margin: 0 5px;
    cursor: pointer;
}

footer .footer_main .footer_tag i:hover{
    color: #facc22;
}

footer .end{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
}

footer .end span{
    color: black;
    margin-left: 10px;
}
::-webkit-scrollbar{
    width: 10px;
}

::-webkit-scrollbar-thumb{
    background: #facc22;
    border-radius: 30px;
}

.anim{
    opacity: 0;
    transform: translateY(40px);
    animation: moveup 0.5s linear forwards;
}

@keyframes moveup{
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes animate{
    0%{
        transform: scale(1.1);
    }
    50%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.1);
    }
}