body {
    font-family: 'Poppins', sans-serif;
}
.mint-gradient {
    background: linear-gradient(135deg, #10b981 0%, #059669 25%, #047857 50%, #065f46 100%);
}
.floating-animation {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}
