Spaces:
Running
Running
File size: 1,167 Bytes
40fbe52 c790f1c 40fbe52 c790f1c 40fbe52 c790f1c 40fbe52 c790f1c 40fbe52 c790f1c 40fbe52 c790f1c 40fbe52 | 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
/* Custom styles */
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
scroll-behavior: smooth;
line-height: 1.6;
}
/* Enhanced hero section */
#home {
background: linear-gradient(135deg, #1e1e2e 0%, #3a1d6e 100%);
}
.profile-image {
transition: transform 0.3s ease;
}
.profile-image:hover {
transform: scale(1.05);
}
.hero-content {
animation: fadeInUp 0.8s ease-out forwards;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* 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;
} |