| |
| @keyframes float { |
| 0% { transform: translateY(0px); } |
| 50% { transform: translateY(-10px); } |
| 100% { transform: translateY(0px); } |
| } |
|
|
| .float-element { |
| animation: float 6s ease-in-out infinite; |
| } |
|
|
| |
| ::-webkit-scrollbar { |
| width: 8px; |
| } |
|
|
| ::-webkit-scrollbar-track { |
| background: rgba(14, 165, 233, 0.1); |
| } |
|
|
| ::-webkit-scrollbar-thumb { |
| background: rgba(14, 165, 233, 0.5); |
| border-radius: 4px; |
| } |
|
|
| ::-webkit-scrollbar-thumb:hover { |
| background: rgba(14, 165, 233, 0.7); |
| } |
|
|
| |
| ::selection { |
| background: rgba(139, 92, 246, 0.3); |
| color: #0c4a6e; |
| } |