/* Correction du problème de fond gris/blanc lors du défilement */

/* Permettre au body et au conteneur principal de s'étendre au-delà de 100% */
html, body {
  min-height: 100%;
  height: auto !important;
}

#holy {
  min-height: 100vh;
  height: auto !important;
}

/* S'assurer que le fond reste blanc */
body {
  background-color: #ffffff !important;
}

#holy {
  background-color: #ffffff !important;
}
