*,
*::after,
*::before{
    box-sizing: border-box;
    margin: 0%;
}
:root{
--Qwigley-font: 'Qwigley', cursive;
--poppins-font: 'Poppins', sans-serif;
--orange-color: #EC682C;
--yellow-color:#FFB30E;

}
.main{
    width: auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 1em;
    background-image: url(./images/meal-backGround.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-color: aqua; */
}
.header{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 2em;
    justify-content: center;
    align-items: center;
}
.head-tittle>h5{
    color:var(--yellow-color);
    font-size: 3em;
    font-family: var(--Qwigley-font);
    font-weight: 700;
}
.head-body{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1em;
}
.search-con{
    width: 60%;
}
input:focus {
    outline: none;
 }

 .food-list{
    /* background-color: green; */
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4em;
 }