Spaces:
Running
Running
File size: 3,205 Bytes
a8624fc 7d9bbb0 a8624fc 7d9bbb0 a8624fc 44f4bf1 a8624fc 7d9bbb0 44f4bf1 a8624fc 7d9bbb0 a8624fc 7d9bbb0 a8624fc |
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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
* {
font-family: 'Space Grotesk', sans-serif;
scroll-behavior: smooth;
}
::selection {
background: rgba(79, 70, 229, 0.3);
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #0f172a;
}
::-webkit-scrollbar-thumb {
background: #4f46e5;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #4338ca;
}
/* Particle.js container */
#particles-js {
position: absolute;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
z-index: 0;
}
/* Animated text gradient */
@keyframes text-gradient {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.animate-text {
animation: text-gradient 8s ease infinite;
background-size: 200% 200%;
}
/* Tech badges */
.tech-badge {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
padding: 1rem;
border-radius: 1rem;
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}
.tech-badge:hover {
transform: translateY(-5px);
background: rgba(79, 70, 229, 0.2);
box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}
.tech-badge i {
color: #4f46e5;
}
.tech-badge span {
font-size: 0.9rem;
font-weight: 500;
}
/* Scroll down animation */
.scroll-down {
width: 30px;
height: 50px;
border: 2px solid white;
border-radius: 50px;
position: relative;
}
.scroll-down::before {
content: '';
position: absolute;
top: 10px;
left: 50%;
width: 6px;
height: 6px;
background: white;
margin-left: -3px;
border-radius: 100%;
animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
0% { opacity: 1; transform: translateY(0); }
100% { opacity: 0; transform: translateY(20px); }
}
/* Glassmorphism effect */
.glass {
backdrop-filter: blur(16px) saturate(180%);
-webkit-backdrop-filter: blur(16px) saturate(180%);
background-color: rgba(15, 23, 42, 0.75);
border: 1px solid rgba(255, 255, 255, 0.125);
}
/* Neon glow effect */
.neon {
box-shadow: 0 0 10px rgba(79, 70, 229, 0.5),
0 0 20px rgba(79, 70, 229, 0.3),
0 0 30px rgba(79, 70, 229, 0.1);
}
.neon-hover:hover {
box-shadow: 0 0 15px rgba(79, 70, 229, 0.7),
0 0 25px rgba(79, 70, 229, 0.5),
0 0 35px rgba(79, 70, 229, 0.3);
}
/* Input glow effect */
.input-glow:focus {
box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.3);
border-color: rgba(79, 70, 229, 0.5);
}
/* Pulse animation for important elements */
.pulse-element {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
opacity: 0.7;
}
50% {
opacity: 1;
}
100% {
opacity: 0.7;
}
}
/* Responsive adjustments */
@media (max-width: 768px) {
#hero h1 {
font-size: 3rem;
}
#hero p {
font-size: 1.25rem;
}
} |