@import 'fonts.css';

/* Base Styles */
body {
    font-family: 'Onest', sans-serif;
}

.font-secondary {
    font-family: 'Orbitron', sans-serif;
}

/* Custom Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.gradient-text {
    background: linear-gradient(135deg, #058ABA 0%, #00FFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}