@tailwind base; @tailwind components; @tailwind utilities; @layer base { html { font-family: 'Inter', system-ui, sans-serif; scroll-behavior: smooth; } h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', system-ui, sans-serif; } } @layer utilities { .text-balance { text-wrap: balance; } } /* Custom scrollbar */ ::-webkit-scrollbar { width: 10px; } ::-webkit-scrollbar-track { background: #f1f1f1; } ::-webkit-scrollbar-thumb { background: #dc2626; border-radius: 5px; } ::-webkit-scrollbar-thumb:hover { background: #b91c1c; }