/* Fond d'écran */
body {
  background-image: url(fond_site.jpg);
  background-size: cover;
  background-position: no-repeat;
  
}

/* Styles pour les icônes de réseaux sociaux */
.social-icons a {
  display: inline-block;
  margin-left: 5px;
}

.social-icons img {
  width: 20px;
  height: 20px;
  transition: filter 0.5s ease;
}

/* Styles pour la section de gauche */
.left-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Styles pour la section de droite */
.right-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index:5000;
  
}

.right-section img {
  width: 340px;
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
  margin: 5px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.9); /* Ajout de l'ombre portée */
}

.right-section img:hover {

  filter: grayscale(0%);
  box-shadow: 10px 10px 24px rgba(0, 0, 0, 0.8); /* Augmentation de l'ombre portée */
}

/* Styles pour les icônes de réseaux sociaux Facebook et Instagram */
.facebook-icon {
  content: url(i8f.svg);
}

.instagram-icon {
  content: url(i8i.svg);
}

.facebook-icon:hover {
  content: url(i8fg.svg);
  filter: grayscale(0%);
}

.instagram-icon:hover {
  content: url(i8ig.svg);
  filter: grayscale(0%);
}

@-webkit-keyframes drawIn {
  0% {
    stroke: transparent;
    stroke-dashoffset: 10000;
  }
  80% {
    stroke: white;
  }
}
@keyframes drawIn {
  0% {
    stroke: transparent;
    stroke-dashoffset: 10000;
  }
 30% {	
    stroke: white;
  }
}
html,
body {
  height: 100%;
}
svg {
  position: absolute;
  top: 200px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 800px;
  z-index: 9999;
  filter: drop-shadow(7px 7px 1px rgba(0, 0, 0, 0.5)); /* Ajout de l'ombre portée à l'animation SVG */

}
.mask-path {
  stroke: white;
  stroke-dasharray: 10000;
  -webkit-animation: drawIn 5s 1s ease-in both;
         animation: drawIn 3.5s 1s ease-in both;
		 text-shadow: 0px 0px 50px #00ff00;
		 z-index:-1;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

#large-image {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
}

.banner {

  color: #fff;
  height: 40px;
  position: relative;
  font-family: Tahoma, sans-serif;
  text-align: center; /* pour centrer le texte */
  letter-spacing: 0.3em;
     bottom: 20px; /* ajustez cette valeur pour déplacer la phrase vers le haut */
}

.banner-text {
font-size: 10px;
color: white;
 text-shadow:
      0 0 3.5px #fff,
      0 0 5px #fff,
      0 0 11px #fff,
      0 0 22px #fff,
      0 0 72px #fff,
      0 0 100px #fff;
	  animation: flicker 1.5s infinite alternate;
  color: #fff;
}

/* Flickering animation */
@keyframes flicker {
    
  0%, 18%, 22%, 25%, 53%, 57%, 100% {

      text-shadow:
      0 0 2px #fff,
      0 0 5px #fff,
      0 0 19px #fff,
      0 0 100px #fff;
  
  }
  
  20%, 24%, 55% {        
      text-shadow: none;
  }    
}

@media screen and (max-width: 600px) {
  /* styles à appliquer pour les écrans de largeur maximale de 600px */
}

svg{
	max-width: 100%;
	height: auto;
}

#identifiant {
background-repeat : no-repeat;
Background-size : cover; 
}