@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  body {
   @apply p-8;
  }
  /* Default styles for HTML tags */
  h1, h2, h3, h4, h5, h6 {
    @apply font-sans font-bold text-gray-800;
  }

  p {
    @apply text-base text-gray-700;
  }






}