html,
body {
  background-image: url(images/plateau.jpeg); /* pour changer le fond du site c'est ici*/
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100%;
  background-color: #777676;
}

body{
  display: -ms-flexbox;
  display: flex;
  color: #000000;
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
}

/* pour le zoom quand on passe sur les images du calendrier */
.img-zoom1:not(:active)
{
   transition: 0.5s;
}

.img-zoom1:hover
{
   transform: scale(1.5);
   transition: 0.5s;
   margin-bottom: 15%;
   z-index:10;
}

/* pour le dezoom quand on passe sur les images du calendrier */
.img-zoom2:not(:active)
{
   transition: 0.5s;
}

.img-zoom2:hover
{
   transform: scale(1.5);
   transition: 0.5s;
   margin-bottom: 20%;
   z-index:10;
}

.accordion {
  --bs-accordion-active-bg: rgba(255, 255, 255, 0.5);
}
