can you check redvisioncreativestudio.com and get the company diviisions incorpoorated
ec0c47e verified | /* Custom animations */ | |
| @keyframes float { | |
| 0% { transform: translateY(0px); } | |
| 50% { transform: translateY(-15px); } | |
| 100% { transform: translateY(0px); } | |
| } | |
| .floating { | |
| animation: float 6s ease-in-out infinite; | |
| } | |
| /* Gradient background */ | |
| body { | |
| background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%); | |
| color: #ffffff; | |
| } | |
| /* Custom scrollbar */ | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: #f1f1f1; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: #ef4444; | |
| border-radius: 4px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: #dc2626; | |
| } | |
| /* Smooth transitions */ | |
| a, button { | |
| transition: all 0.3s ease; | |
| } |