 * {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
            list-style-type: none;
        }

        body {
            background-color: rgb(250, 244, 244);
        }

        nav {
            display: inline-flex;
            justify-content: space-evenly;
            gap: 70px;
            width: 100%;
            padding: 15px 20px;
            position: sticky;
        }
        nav>li>a {
            text-decoration: none;
            color: black;
        }

        .tilt {
            position: absolute;
            width: 450px;
            left: 150px;
            top: 200px;
            align-items: start;
            line-height: 40px;
            color: white;
            font-size: large;
            font-weight: 900;
        }

        .tilt>button {
            align-items: start;
        }

        .tilt>button>a,
        nav>button>a {
            background-color: rgb(255, 115, 0);
            color: white;
            border: none;
            text-decoration: none;
        }

        button {
            padding: 5px 10px;
            background-color: rgb(255, 115, 0);
            border: none;
        }

        .hero-image {
            width: 100%;
            height: 100vh;

        }

        .home {
            color: rgb(255, 153, 0);
        }

        .name, .footer-box>h3 {
            font-family: "Great Vibes", cursive;
            font-weight: 400;
            font-style: normal;
            color: rgb(255, 153, 0);
            font-size: xx-large;
        }

        /* word */

        .word {
            display: flex;
            margin: auto;
            position: absolute;
            z-index: 100000;
            justify-content: center;
            padding: 10px 50px 10px 20px;
            background-color: white;
            width: 400px;
            /* bottom: 0; */
            left: 0;
            right: 0;
            top: 41.5rem;

        }

        .word>p {
            text-align: center;
            margin-top: 6px;

        }

        .search {
            width: 30px;
            height: 30px;
        }

        /* popular categories */
        .categories {
            display: block;
            margin-top: 50px;
            width: 100%;
        }

        .popularity {
            width: 100%;
            display: flex;
            justify-content: space-around;
            gap: 30px;


        }

        .text>p {
            margin: 30px 20px;
            text-align: center;
            font-size: xx-large;
            font-weight: 900;
        }

        .foods {
            width: 350px;
            height: 280px;
            margin: auto;
            margin-top: 15px;

        }

        .food {
            width: 290px;
            height: 200px;
            margin-left: 20px;
        }

        .foods>p {
            margin: 20px 20px;
            text-align: center;
            font-size: large;
        }

        .foods>h4 {
            align-items: center;
            left: 0;
            top: 0;
            font-size: small;
            font-weight: 500;
            padding-bottom: 10px;

        }

        /* chef specialties */
        .foodss {
            width: 300px;
            height: 350px;
            margin: 40px;
        }


        .foodss>p {
            margin: 20px 20px;
            text-align: center;
            font-size: large;
            left: 0;
        }

        .foodss>h4 {
            align-items: center;
            /* text-align: center; */
            font-size: small;
            font-weight: 100;
            padding-bottom: 10px;
            left: 13px;

        }

        .price {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
        }

        .price>h6 {
            font-size: large;
        }

        .price>button {
            color: white;
            padding: auto;
            border-radius: 4px;
            padding: 15px 20px;
        }
        .write > img{
            width: 100%;
            height: 90vh;
            margin-top: 25px;
            margin-bottom: -80px;
        }
        /* FOOTER */
.footer{
    background:#6b3f2a;
    width: 100%;
    color:white;
    display:flex;
    position: absolute;
    justify-content:space-around;
    padding:40px;
    height: 70vh;
    z-index: 10000;
    flex-wrap:wrap;
    /* justify-content: flex-start; */
}

.footer-box{
    max-width:300px;
    line-height: 25px;
}

.footer-box ul{
    list-style:none;
    margin-top:10px;
}

.footer-box li{
    margin-bottom:8px;
}

/* =========================
   MOBILE RESPONSIVENESS
========================= */

@media (max-width:768px){

    nav{
        flex-wrap:wrap;
        gap:20px;
        justify-content: space-between;
        justify-content:center;
        text-align:center;
    }

    /* HERO TEXT */
    .tilt{
        position:absolute;
        width:90%;
        left:50%;
        transform:translateX(-50%);
        top:120px;
        text-align:center;
        line-height:30px;
    }

    .hero-image{
        height:60vh;
        object-fit:cover;
    }

    /* SEARCH WORD BOX */
    .word{
        width:90%;
        top:auto;
        bottom:-30px;
        padding:10px;
        flex-wrap:wrap;
        text-align:center;
    }

    /* POPULAR SECTION */
    .popularity{
        flex-direction:column;
        align-items:center;
        gap:20px;
    }

    .foods{
        width:90%;
        height:auto;
    }

    .food{
        width:100%;
        height:auto;
        margin-left:0;
    }

    /* CHEF SPECIALS */
    .foodss{
        width:90%;
        height:auto;
        margin:20px auto;
    }

    .price{
        flex-direction:column;
        gap:10px;
        align-items:center;
    }

    .price > button{
        width:100%;
    }

    /* IMAGE SECTION */
    .write > img{
        height:auto;
        margin-bottom:0;
    }

    /* FOOTER */
    .footer{
        position:relative;
        height:auto;
        flex-direction:column;
        text-align:center;
        gap:25px;
        padding:25px;
    }

    .footer-box{
        max-width:100%;
    }
}


/* =========================
   SMALL PHONES
========================= */

@media (max-width:480px){

    .tilt{
        font-size:14px;
    }

    .text > p{
        font-size:22px;
    }

}