File size: 689 Bytes
f3e2774 2be9599 f3e2774 2be9599 f3e2774 2be9599 f3e2774 2be9599 f3e2774 2be9599 f3e2774 2be9599 f3e2774 | 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 | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
}
.container {
max-width: 1280px;
}
/* Smooth scrolling for anchor links */
html {
scroll-behavior: smooth;
}
/* Animation for cards */
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-5px);
}
/* Custom focus styles */
input:focus, textarea:focus, button:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.3);
}
/* Responsive typography */
@media (max-width: 640px) {
h1 {
font-size: 2.25rem;
}
h2 {
font-size: 1.75rem;
}
} |