@tailwind base; @tailwind components; @tailwind utilities; :root { font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; line-height: 1.5; font-weight: 400; color-scheme: light dark; color: #213547; background-color: #ffffff; font-synthesis: none; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } * { margin: 0; padding: 0; box-sizing: border-box; } body { min-width: 320px; min-height: 100vh; } #root { width: 100%; height: 100vh; display: flex; flex-direction: column; } @media (prefers-color-scheme: dark) { :root { color: #ffffff; background-color: #1a1a2e; } }