Spaces:
Sleeping
Sleeping
File size: 567 Bytes
dbc70ee | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Outfit:wght@100..900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
@apply bg-gs-light text-gs-navy font-sans antialiased;
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Outfit', sans-serif;
}
}
/* Custom styles for animations or specific components if needed */
.glass-panel {
@apply bg-white/80 backdrop-blur-md border border-white/20 shadow-xl rounded-2xl;
}
|