Spaces:
Running
Running
File size: 744 Bytes
e68a081 f362b73 e68a081 f362b73 e68a081 f362b73 e68a081 f362b73 e68a081 f362b73 e68a081 f362b73 e68a081 | 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 | /* Custom styles that can't be handled by 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 */
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-5px);
}
/* Custom underline effect */
.link-underline {
position: relative;
}
.link-underline::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #3b82f6;
transition: width 0.3s ease;
}
.link-underline:hover::after {
width: 100%;
} |