@tailwind base;
@tailwind components;
@tailwind utilities;
/* Définir le thème par défaut en sombre */
:root {
  --background-color: rgb(3 7 18);
  --text-color: white;
}
body {
  background-color: var(--background-color) !important;
  color: var(--text-color) !important;
}
