Spaces:
Running
Running
File size: 1,203 Bytes
0551b5e 879fc7a 0551b5e 879fc7a 0551b5e 879fc7a 0551b5e 879fc7a 0551b5e 879fc7a 0551b5e 879fc7a 0551b5e | 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 | /* Custom styles that complement Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
/* Custom button animations */
.btn-scale {
transition: transform 0.3s ease;
}
.btn-scale:hover {
transform: translateY(-2px);
}
/* Section padding consistency */
section {
padding-top: 5rem;
padding-bottom: 5rem;
}
/* Hero section text shadow */
.hero-text {
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* Card hover effects */
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
/* Custom underline animation */
.link-underline {
position: relative;
display: inline-block;
}
.link-underline::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: currentColor;
transition: width 0.3s ease;
}
.link-underline:hover::after {
width: 100%;
} |