* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Slideshow container */
.slideshow-container {
  position: relative;
  margin: auto;
  overflow: hidden;
}

/* Hide the images by default */
.mySlides {
  display: none;
  overflow: hidden;
}

/* Fading animation */
.fade {
  --duration: 4s;
  -webkit-animation-name: fade;
  -webkit-animation-duration: var(--duration);
  animation-name: fade;
  animation-duration: var(--duration);
}

@-webkit-keyframes fade {
  from {
    opacity: 0.1;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.1;
  }
  to {
    opacity: 1;
  }
}



.titreSlide {
  font-size: 50px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color:rgb(248, 112, 0);
  text-shadow: 0em 0.1em 0.1em #ffffff;
  font-family: 'Alfa Slab One', cursive;
  /*animation titre*/
  animation-duration: 3s;
  animation-name: slidein;
  overflow: hidden;

}
/*animation titre*/
@keyframes slidein {
  from {  
    margin-left:100%;
    width:300%;
    
  }

  to {  
    margin-left:0%;
    width:100%;
 
  }
}
/************************************/

/**  media querie titre slide */

@media(max-width:670px){
  .titreSlide{ font-size: 30px;

  }
}
@media(max-width:350px){
  .titreSlide{ font-size: 25px;

  }
}
/************************************/