@import './article.css';

@layer base {
  p {
    @apply text-base;
  }
  h1 {
    @apply text-3xl sm:text-4xl font-bold;
  }
  h2 {
    @apply text-2xl sm:text-3xl font-bold;
  }
  h3 {
    @apply text-xl sm:text-2xl font-bold;
  }
  h4 {
    @apply text-lg sm:text-xl font-bold;
  }
}