@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap);


html {
    scroll-behavior: smooth !important
}

body {
    font-family: Inter, sans-serif;
    font-display: swap;
    overflow-x: hidden;
}

/* Mobile Menu Animation */
#mobile-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease-in-out;
}

#mobile-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#mobile-menu.hidden {
    display: none;
}

.article-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

@keyframes float {
    0% {
        transform: translateY(-3px)
    }

    50% {
        transform: translateY(3px)
    }

    100% {
        transform: translateY(-3px)
    }
}

.animation-float {
    animation: 3s ease-in-out infinite float
}

@keyframes grow {
    0% {
        scale: 1;
    }

    50% {
        scale: 1.5;
    }

    100% {
        scale: 1;
    }
}

.animation-grow {
    animation: 10s ease-in-out infinite grow
}

.hero-bg {
    width: 100%;
    height: 800px;
    padding: 0px;
    margin: 0px;
}

@media (max-width:768px) {
    .animation-float {
        animation-delay: 2000ms !important;
    }
}