html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.grid-invert {
  transition: background-color 0.2s, filter 0.2s, color 0.2s; /* Ajout de la transition */
}

.grid-invert:hover {
  background-color: #f68020;
}

.grid-invert:hover > p {
  color: white !important;
}

.grid-invert:hover > img {
  filter: brightness(100) !important;
}
