Spaces:
Running
Running
File size: 772 Bytes
36a4617 0425c4a 36a4617 0425c4a 36a4617 0425c4a 36a4617 0425c4a 36a4617 0425c4a 36a4617 0425c4a 36a4617 |
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 |
/* Custom styles that can't be done with Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');
body {
font-family: 'Montserrat', sans-serif;
scroll-behavior: smooth;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #111827;
}
::-webkit-scrollbar-thumb {
background: #f59e0b;
border-radius: 4px;
}
/* Animation for the hero section */
@keyframes pulse {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
}
.hero-title {
animation: pulse 4s infinite;
}
/* FAQ content transition */
#faq div > div {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
} |