Documentation
@tailwind components;

@layer components {
    .box_gradient_sunset {
      @apply
        transition
        bg-gradient-to-r 
        from-purple-400 
        via-pink-500 
        to-red-500 
        text-white
    }
    .box_ghost {
        @apply 
          transition
          overflow-hidden 
          bg-transparent 
          border-solid 
          border
          hover:transition
    }
}