| @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap'); | |
| body { | |
| font-family: 'Montserrat', sans-serif; | |
| background-color: #111827; | |
| color: #F9FAFB; | |
| } | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: #1F2937; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: #F59E0B; | |
| border-radius: 4px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: #D97706; | |
| } | |
| /* Custom animations */ | |
| @keyframes float { | |
| 0% { transform: translateY(0px); } | |
| 50% { transform: translateY(-10px); } | |
| 100% { transform: translateY(0px); } | |
| } | |
| .floating { | |
| animation: float 3s ease-in-out infinite; | |
| } | |
| /* Custom button hover effect */ | |
| .btn-hover-effect { | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .btn-hover-effect::after { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: -100%; | |
| width: 100%; | |
| height: 100%; | |
| background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); | |
| transition: 0.5s; | |
| } | |
| .btn-hover-effect:hover::after { | |
| left: 100%; | |
| } |