@tailwind base; @tailwind components; @tailwind utilities; :root { --background: #ffffff; --foreground: #171717; } @media (prefers-color-scheme: dark) { :root { --background: #0a0a0a; --foreground: #ededed; } } body { color: var(--foreground); background: var(--background); font-family: Arial, Helvetica, sans-serif; } @layer utilities { .text-balance { text-wrap: balance; } } /* Responsive typography for large screens */ @layer components { /* Responsive heading that scales on large screens */ .responsive-heading-1 { @apply text-2xl font-bold; } .responsive-heading-2 { @apply text-xl font-semibold; } .responsive-heading-3 { @apply text-lg font-semibold; } /* Large screen typography scaling */ @screen lg { .responsive-heading-1 { @apply text-3xl; } .responsive-heading-2 { @apply text-2xl; } .responsive-heading-3 { @apply text-xl; } } @screen 3xl { .responsive-heading-1 { @apply text-4xl; } .responsive-heading-2 { @apply text-2xl; } .responsive-heading-3 { @apply text-xl; } } @screen 4xl { .responsive-heading-1 { @apply text-5xl; } .responsive-heading-2 { @apply text-3xl; } .responsive-heading-3 { @apply text-2xl; } } }