File size: 1,222 Bytes
0b2a6ce 2854d53 0b2a6ce 2854d53 0b2a6ce 2854d53 0b2a6ce 2854d53 0b2a6ce 2854d53 0b2a6ce 2854d53 0b2a6ce | 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 | /* Custom fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
/* Base styles */
body {
font-family: 'Inter', sans-serif;
line-height: 1.6;
}
/* Custom animations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.fade-in {
animation: fadeIn 0.6s ease-out forwards;
}
/* Gradient text */
.gradient-text {
background-clip: text;
-webkit-background-clip: text;
color: transparent;
background-image: linear-gradient(90deg, #6366f1, #8b5cf6);
}
/* Custom shadows */
.custom-shadow {
box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.2),
0 10px 10px -5px rgba(99, 102, 241, 0.04);
}
/* Responsive tweaks */
@media (max-width: 768px) {
.mobile-flex-col {
flex-direction: column;
}
.mobile-text-center {
text-align: center;
}
}
/* Smooth transitions */
.transition-all {
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 300ms;
}
/* Enhanced focus states */
.focus-visible {
outline: 2px solid #6366f1;
outline-offset: 2px;
} |