


.text-gradient {
    background: linear-gradient(to right, #23bdee, #08ffc8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
[x-cloak] {
    display: none !important;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* NAVBAR STYLE */

.nav-link {
    @apply text-xl text-gray-600 w-full text-center py-3 border-b border-gray-50 transition;
}

.nav-active {
    @apply font-bold text-black border-2 border-black rounded-full mx-6;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
.float {
    animation: float 6s ease-in-out infinite;
}
.float-slow {
    animation: float 9s ease-in-out infinite;
}
