.btn {
    @apply  font-bold text-white py-2 px-4 rounded cursor-pointer;
}
.btn2 {
    @apply  font-bold text-white py-2 px-2 rounded cursor-pointer;
}
.btn3 {
    @apply  font-bold text-black py-2 px-3 border-black border rounded-full border-dashed cursor-pointer hover:text-white;
}
.btn4 {
    @apply  font-bold py-0.5 px-1.5 border-black border rounded border-dotted cursor-pointer;
}
.btn-red{
    @apply bg-red-600 hover:bg-red-500;
}
.btn-blue{
    @apply bg-blue-600 hover:bg-blue-500;
}
.btn-green{
    @apply bg-green-600 hover:bg-green-500;
}
.btn-black{
    @apply bg-white hover:bg-black  hover:rotate-45;
}
