@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@700&family=Work+Sans:wght@300;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
@import url(./css/navbar.css);
@import url(./css/homepage/homepage-footer.css);
@import url(./css/homepage/homepage-food-card.css);
@import url(./css/homepage/homepage-hero.css);
@import url(./css/homepage/homepage-testimonials.css);
@import url(./css/homepage/homepage-highlight.css);

@keyframes glow {
    from {@keyframes glow {
        from {
            text-shadow: 0 0 10px #00FFD4, 0 0 20px #00FFD4, 0 0 30px #00FFD4;
        }
        to {
            text-shadow: 0 0 20px #00FFD4, 0 0 30px #00FFD4, 0 0 40px #00FFD4;
        }
    }
        text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 30px #FFD700;
    }
    to {
        text-shadow: 0 0 20px #FFD700, 0 0 30px #FFD700, 0 0 40px #FFD700;
    }
}

* {
    margin: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* custom scrollbar */
::-webkit-scrollbar {
    width: 20px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf;
}

body {
    font-family: 'Work Sans', sans-serif;
    background-color: #040D12;
    background: linear-gradient(to right, #040D12, black);
}

/* SECTIONS */
section {
    height: 35rem;
    display: flex;
    flex-flow: column;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: background-color 0.3s;
}


/* RESPONSIVE @768 */
@media (max-width: 768px) {
    section {
        height: 55rem;
    }
}