Spaces:
Running
Running
File size: 755 Bytes
7d0a5df 2d1fcf8 7d0a5df 2d1fcf8 7d0a5df 2d1fcf8 7d0a5df 2d1fcf8 7d0a5df 2d1fcf8 7d0a5df 2d1fcf8 7d0a5df | 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 | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
scroll-behavior: smooth;
}
.feature-card:hover .icon-box {
transform: scale(1.1);
transition: transform 0.3s ease;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
@media (max-width: 768px) {
.stats-grid {
grid-template-columns: 1fr;
}
}
.search-box input:focus {
box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.3);
}
.dark .search-box input:focus {
box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.5);
}
.hero h1 {
text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.dark .hero h1 {
text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
} |