/* Custom styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}
/* Animation for the coming soon text */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}
.animate-pulse {
    animation: pulse 2s infinite;
}

/* New badge animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

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