| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); |
|
|
| body { |
| font-family: 'Inter', sans-serif; |
| scroll-behavior: smooth; |
| } |
|
|
| .gradient-text { |
| background: linear-gradient(90deg, #6366f1 0%, #a855f7 100%); |
| -webkit-background-clip: text; |
| background-clip: text; |
| color: transparent; |
| } |
|
|
| .gradient-bg { |
| background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%); |
| } |
|
|
| .dark .gradient-bg { |
| background: linear-gradient(135deg, #4f46e5 0%, #7e22ce 100%); |
| } |
|
|
| .feature-card:hover { |
| transform: translateY(-5px); |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); |
| } |
|
|
| .animate-float { |
| animation: float 6s ease-in-out infinite; |
| } |
|
|
| @keyframes float { |
| 0% { transform: translateY(0px); } |
| 50% { transform: translateY(-20px); } |
| 100% { transform: translateY(0px); } |
| } |