.menu-body .menu{
    padding: 5rem 0;
}
.menu-body .title{
    text-align: center;
    margin-bottom: 2rem;
}
.menu-body .title h2{
    font-size: 3rem;
    font-family: var(--font-annabel);
    font-weight: 300;
    text-shadow: 0 .1rem .1rem rgba(0,0,0,0.3);
    color: var(--red);
    text-align: center;
    padding-bottom: 1rem;
}
/* styling menu container */
.menu-body .btn-container{
    margin-bottom: 4rem;
    display: block;
    justify-content: center;
    background-color: var(--menu-bg);
    padding: 1rem 0;
    text-align: center;
}
.menu-body .filter-btn{
    background: transparent;
    font-size: 1.7rem;
    text-transform: capitalize;
    margin: 0 0.5rem;
    letter-spacing: 0.1rem;
    padding: 0.375rem 0.75rem;
    color: var(--orange);
    cursor: pointer;
}
.menu-body .section-center{
    width: 100vw;
    margin:0 auto;
    padding: 2rem 15%;
    display: grid;
    gap: 3rem 2rem;
    justify-content: center;
}
.menu-body .menu-item{
    display: grid;
    gap: 1rem 2rem;
    max-width: 30rem;
}
.menu-body .item-info header{
    display: flex;
    justify-content: space-between;
    border-bottom: 0.5px dotted var(--orange);
}
.menu-body .item-info h4{
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-family: var(--font-poppins-bold);
    font-weight:800;
    color: var(--text-black);
}
.menu-body .item-info .price{
    color: var(--red);
    font-size: 1.5rem;
}
.menu-body .item-text{
    font-size: 1.5rem;
    padding-top: 1rem;
}

@media screen and (min-width:768px){
    .menu-body .menu-item{
        grid-template-columns: 25rem 1fr;
        gap: 0 2rem;
        max-width: 60rem;
    }
    
}

@media screen and (min-width:1200px){
    .menu-body .section-center{
        width: 100vw;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (max-width:767px){
    .menu-body .filter-btn{
        font-size: 1.5rem;
        border: 0.1rem solid #fff;
        border-radius: .5rem;
        margin: 0.6rem;
    }
}