/* ============================================
   ANIMATIONS
============================================ */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.hero-content{

    animation:fadeUp 1.2s ease;

}

.food-card{

    animation:fadeUp .8s ease;

}

.category{

    animation:fadeUp .8s ease;

}