File size: 693 Bytes
945b8ba
7b50d2b
945b8ba
 
7b50d2b
 
945b8ba
 
 
 
 
 
 
 
7b50d2b
 
945b8ba
 
 
 
 
7b50d2b
 
945b8ba
 
7b50d2b
 
945b8ba
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* 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 !important;
    }
    .timeline-item::before {
        left: 0.75rem !important;
    }
}

/* 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;
}