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

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/

@layer base {
  h1 {
    @apply text-3xl font-bold tracking-tight space-y-4 text-slate-500;
  }

  h2 {
    @apply text-2xl font-semibold tracking-tight space-y-3 text-slate-500;
  }
}