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

html, body {
  @apply bg-light text-dark;
}

.card {
  @apply rounded-lg overflow-hidden shadow-lg bg-white hover:shadow-2xl transition-shadow;
}
.card img {
  @apply w-full h-48 object-cover;
}
.card-content {
  @apply p-4;
}
