42 lines
682 B
CSS
42 lines
682 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
:root {
|
|
--background: 0 0% 100%;
|
|
--foreground: 222.2 84% 4.9%;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-family: Georgia, "Times New Roman", Times, serif;
|
|
}
|
|
}
|
|
|
|
@layer utilities {
|
|
.hero-bg {
|
|
background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
|
|
}
|
|
|
|
.section-dark {
|
|
background-color: #0a0a0a;
|
|
}
|
|
|
|
.text-shadow {
|
|
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
|
|
}
|
|
|
|
.text-shadow-lg {
|
|
text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
|
|
}
|
|
}
|