35 lines
582 B
CSS
35 lines
582 B
CSS
body {
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
.gradient-text {
|
|
background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
|
|
.hero-bg {
|
|
background: linear-gradient(to bottom right, #f8fafc, #e2e8f0);
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
.service-card {
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.service-card:hover {
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.incognito-field {
|
|
opacity: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
height: 0;
|
|
width: 0;
|
|
z-index: -1;
|
|
} |