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;
    position: relative;
    top: 50%;
    color: #fff;
}

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

/*Blog*/

.blog{
    width: 100%;
    height: auto;
    padding: 30px 0;
}

.blog .box{
    width: 95%;
    margin: 50px auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
}

.blog .box .card{
    margin: 0 auto;
    width: 450px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 2px 10px black;
    margin-top: 20px;
    
}

.blog .box .card .img{
    width: 450px;
    height: 300px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

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

.blog .box .card .tag .date p{
    width: 100%;
    padding: 15px 0 0 20px;
    font-size: 24px;
    color: orange;
}

.blog .box .card .tag .date i{
    margin-left: 8px;
    font-size: 24px;
    cursor: pointer;
    color: orange;
}

.blog .box .card .tag .heading{
    padding: 10px 20px 10px 20px;
    font-size: 25px;
}

.blog .box .card .tag .text{
    padding: 0 20px 10px 20px;
    text-align: justify;
    line-height: 21px;
    color: black;
}

.blog .box .card .tag hr{
    width: 95%;
    margin: 0 auto;
    height: 1px;
    border: 0;
    background: #facc22;
    border-radius: 5px;
}

.blog .box .card .tag .view-like{
    padding: 10px 20px 25px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog .box .card .tag .view-like .view{
    display: flex;
    align-items: center;
}

.blog .box .card .tag .view-like .view p{
    margin-right: 10px;
    font-size: 15px;
    color: #000;
}
.like p{
    color: orange;
}
.blog .box .card .tag .view-like .like{
    display: flex;
    align-items: center;
    font-size: 14px;
}

.blog .box .card .tag .view-like .like i{
    cursor: pointer;
    margin-left: 5px;
}



/*Banner*/

.blog_banner{
    width: 100%;
    height: 30vh;
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(images/bannerblog.jpg);
    background-size: cover;
    background-position: center;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog_banner .blog_banner_tag h2{
    color: #fff;
    font-size: 40px;
    line-height: 23px;
    margin-left: 140px;
    margin-right: 80px;
}

.blog_banner .blog_banner_tag h2 span{
    font-size: 25px;
}

.blog_banner form{
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog_banner form input{
    padding: 15px;
    width: 350px;
    border-radius: 30px;
    outline: none;
    border: 2px solid #facc22;
    font-size: 15px;
}

.blog_banner form .blog_sub .email{
    position: relative;
    left: 30px;
}
.blog_banner form  button{
    background: #facc22;
    outline: none;
    padding: 10px 12px;
    position: relative;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    color: #000;
}


/*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);
    }
}