Spaces:
Running
Running
| /* Base styles */ | |
| body { | |
| font-family: 'Montserrat', sans-serif; | |
| margin: 0; | |
| padding: 0; | |
| color: white; | |
| } | |
| /* Animation for floating elements */ | |
| @keyframes float { | |
| 0%, 100% { | |
| transform: translateY(0); | |
| } | |
| 50% { | |
| transform: translateY(-10px); | |
| } | |
| } | |
| /* Custom scrollbar */ | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| height: 8px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: rgba(255, 255, 255, 0.1); | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: rgba(255, 255, 255, 0.3); | |
| border-radius: 4px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: rgba(255, 255, 255, 0.5); | |
| } | |
| /* Page transitions */ | |
| .fade-in { | |
| animation: fadeIn 1.5s ease-in-out; | |
| } | |
| @keyframes fadeIn { | |
| from { opacity: 0; } | |
| to { opacity: 1; } | |
| } | |
| /* Responsive adjustments */ | |
| @media (max-width: 768px) { | |
| .student-photo { | |
| width: 180px; | |
| height: 180px; | |
| } | |
| .student-name { | |
| font-size: 1.8rem; | |
| } | |
| .major { | |
| font-size: 1.2rem; | |
| } | |
| } | |
| @media (max-width: 480px) { | |
| .student-photo { | |
| width: 150px; | |
| height: 150px; | |
| } | |
| .student-name { | |
| font-size: 1.5rem; | |
| } | |
| } | |