.prose {
    --tw-prose-body: theme('colors.mh-sage');
    --tw-prose-headings: theme('colors.mh-deep-teal');
    --tw-prose-lead: theme('colors.mh-sage');
    --tw-prose-links: theme('colors.mh-teal');
    --tw-prose-bold: theme('colors.mh-deep-teal');
    --tw-prose-counters: theme('colors.mh-sage');
    --tw-prose-bullets: theme('colors.mh-teal');
    --tw-prose-hr: theme('colors.mh-cream/50');
    --tw-prose-quotes: theme('colors.mh-deep-teal');
    --tw-prose-quote-borders: theme('colors.mh-teal');
    --tw-prose-code: theme('colors.mh-deep-teal');
    --tw-prose-pre-code: theme('colors.mh-sage');
    --tw-prose-pre-bg: theme('colors.mh-cream/20');
    --tw-prose-th-borders: theme('colors.mh-cream/50');
    --tw-prose-td-borders: theme('colors.mh-cream/50');
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
