

.container{ 
width: 100%;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 3rem 10%;
}

.section-graphisme.fond-gris-mua .container {
  padding: 0 8%;
  min-height: 60vh;
}

.gallery{ 
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
grid-gap: 18px;
}

.gallery img{ 
width: 100%;

}

.titre-galerie {
  height: 80px;
  background-color: white;
  display: flex;
  align-items: center;
  padding-left: 4rem;
}

.titre-galerie h2 {
  font-size: 1.2rem;
  margin: 0;
  color: #333;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .titre-galerie h2 {
    font-size: 1.1rem;
  }

  header h1,
  header nav a {
    font-size: 0.9rem;
  }

  .gallery img {
    max-width: 100%;
    height: auto;
  }
}

                    /* ------------------- Couleur lien MENU  --------------------------------------- */
#menu a:hover {
  color: #EBA00E !important; /* Jaune par exemple */
}

@media screen and (max-width: 736px) {
  #header h1 {
    font-size: 1.2rem;
  }

  #header nav ul li a {
    font-size: 1rem;
  }
}
                                   /* ------------------- taille police CV smartphone --------------------------------------- */
@media screen and (max-width: 768px) {
  #main .inner.inner-padding {
    font-size: .8rem;
    }
}

                                   /* ------------------- espace sous les list CV --------------------------------------- */
.espace {
    margin-bottom: 40px; 
  }

ul.espace li {
    margin-bottom: 5px;
  }




                           






