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

.btn {
  @apply bg-gray-800 text-white px-4 py-2 rounded w-full text-center;
}

.draggable {
  touch-action: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
  cursor: move;
}
