*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Roboto', sans-serif;
    background: rgb(255,242,215);
}
.logo{
    text-align: center;
    margin-top: 11px;
    font-size: 23px;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(249,136,102);
}
.searchBar{
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

.searchBar input{
    width: 300px;
    height: 35px;
    padding: 11px;
    outline: none;
    border-radius: 33px;
    border: 1px solid rgb(249,136,102);
}
.searchBar button{
    width: 60px;
    height: 35px;
    border-top-right-radius: 22px;
    border-bottom-right-radius: 22px;
    border: none;
    margin-left: -33px;
    background-color:rgb(249,136,102);
    font-size: 17px;
    color: #fff;

}

.category{
    width: 600px;
    height: 200px;
    position: relative;
    overflow: hidden;
    margin: auto;
    margin-top: 33px;
}
.category .dishes{
    display: flex;
    justify-content: center;
    gap: 7px;
    width: 100%;
    height: 100%;
    position: absolute;
    margin: auto;
    transition: all 1s ease;

}

.dishes input{
    width: 100px;
    height: 33px;
    background:  rgb(236, 186, 85);
    color: #222;
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 22px;
    font-size: 20px;

}

.dishes input:hover{
    background:rgb(249,136,102) ;
    color: #fff;
}
.category button{
    position: relative;
    top: 34px;
    background: transparent;
    font-size: 33px;
    border: none;
}

#prevBtn{
    padding: 11px;
}

#nextBtn{
    margin-left: 88%;
}

.showmeal{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
   
}
.showmeal .card{
    width: 300px;
    height: 380px;
    background-color: #fff;
    text-align: center;
    margin-inline: 20px;
    box-shadow: 1px 3px 3px 3px rgb(61, 60, 60);
    border-radius: 4px;
    margin-top: 1rem;
}
.card img{
    width: 100%;
    border-radius: 4px;
}

.card button{
    width: 90px;
    height: 30px;
    background:  rgb(249,136,102);
    border: none;
    color: #fff;
    font-size: 15px;
}

@media screen and (max-width:640px) {
    .category{
        width: 90%;
        font-size: 10px;
    }
 
}


@media screen and (max-width:500px) {
    .category input{
        width: 75px;
    }
    .searchBar input{
        width: 60%;
    }
}


@media screen and (max-width:370px) {
    .category input{
        width: 60%;
        font-size: 14px;
    }
    #nextBtn{
        left: 80%;
    }
}

@media screen and (max-width:400px) {
    .category input{
        width: 60%;
        font-size: 14px;
    }
    .logo h1{
        text-align: center;
    }
    #nextBtn{
        left: 80%;
    }
    .category{
        width: 600px;
    }
}

