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

@layer components {
    .btn_primary {
      @apply bg-primary hover:bg-white text-white hover:text-nav_text border-border font-light transition-all ease-in-out duration-200;
    }
    .btn_secondary {
        @apply bg-white hover:bg-primary text-nav_text hover:text-white transition-all ease-in-out duration-200;
    }
    .active{
      @apply text-primary;
    }
    a{
      @apply cursor-pointer;
    }
   
}