Spaces:
Running
Running
File size: 507 Bytes
23e9d56 486ff41 23e9d56 486ff41 23e9d56 486ff41 23e9d56 486ff41 23e9d56 | 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 | /* Custom styles that enhance Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
line-height: 1.6;
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
/* Custom animation for cards */
@keyframes float {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}
.float-card:hover {
animation: float 3s ease-in-out infinite;
} |