davisdec/the-dramatic-truth-studio
0
1@tailwind base;2@tailwind components;3@tailwind utilities;4 5.font-playfair {6 font-family: 'Playfair Display', serif;7}8 9.font-raleway {10 font-family: 'Raleway', sans-serif;11}12 13/* Custom animations */14@keyframes fadeIn {15 from { opacity: 0; transform: translateY(20px); }16 to { opacity: 1; transform: translateY(0); }17}18 19.animate-fade-in {20 animation: fadeIn 1s ease-out forwards;21}22 23/* Custom scrollbar */24::-webkit-scrollbar {25 width: 8px;26}27 28::-webkit-scrollbar-track {29 background: #f1f1f1;30}31 32::-webkit-scrollbar-thumb {33 background: #6366f1;34 border-radius: 4px;35}36 37::-webkit-scrollbar-thumb:hover {38 background: #4f46e5;39}