| /* Custom styles */ | |
| body { | |
| font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; | |
| scroll-behavior: smooth; | |
| } | |
| /* Timeline styling */ | |
| @media (max-width: 768px) { | |
| .timeline-center::before { | |
| left: 1.5rem ; | |
| } | |
| .timeline-item::before { | |
| left: 0.75rem ; | |
| } | |
| } | |
| /* Custom animation */ | |
| @keyframes float { | |
| 0% { transform: translateY(0px); } | |
| 50% { transform: translateY(-20px); } | |
| 100% { transform: translateY(0px); } | |
| } | |
| .floating { | |
| animation: float 6s ease-in-out infinite; | |
| } | |
| /* Section spacing */ | |
| section { | |
| scroll-margin-top: 80px; | |
| } |