File size: 1,198 Bytes
2d0df50 74e6c21 2d0df50 74e6c21 2d0df50 74e6c21 2d0df50 74e6c21 2d0df50 74e6c21 2d0df50 74e6c21 2d0df50 |
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 |
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Space+Mono:wght@400;700&display=swap');
body {
font-family: 'Space Grotesk', sans-serif;
scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Space Grotesk', sans-serif;
}
.font-mono {
font-family: 'Space Mono', monospace;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #0f172a;
}
::-webkit-scrollbar-thumb {
background: #6d28d9;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #5b21b6;
}
/* Animation Classes */
.animate-float {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
/* Hero Section Gradient */
.hero-gradient {
background: radial-gradient(circle at 70% 30%, rgba(109,40,217,0.2) 0%, rgba(15,23,42,0) 50%);
}
/* Project Card Hover Effect */
.project-card {
transition: all 0.3s ease;
}
.project-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(109,40,217,0.2);
} |