@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
    h1 {
        @apply text-4xl font-bold;
    }

    h2 {
        @apply text-3xl font-bold;
    }

    h3 {
        @apply text-2xl font-semibold; /* You can style h3 however you want */
    }

    h4 {
        @apply text-xl font-semibold;
    }

    a {
        @apply text-blue-600 underline; /* Example for restoring link styles */
    }
    /* Add any other global element styles you want here */
}
