html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  overflow: hidden;
  font-family: Helvetica, Arial, sans-serif;
}

/* Structure principale : 3 colonnes */
.container {
  display: grid;
  grid-template-columns: 1fr auto 0.6fr; /* texte / image / images droite */
  width: 100vw;
  height: 100vh;
  gap: 20px;
}

/* Texte à gauche */
.texte {
  color: blue;
  text-align: justify;
  padding: 40px;
  font-size: 1rem;
  line-height: 1.4;
  max-height: 100vh;
  overflow-y: auto;
}

/* Image principale au centre */
.image-centre {
  display: flex;
  justify-content: center;  /* centre horizontalement */
  align-items: center;      /* centre verticalement */
  width: 100%;
  height: 100%;
}

.image-centre img {
  max-width: 80%;
  max-height: 100%;
  object-fit: contain;
}

/* Colonne de droite */
.images-droite {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px;
  overflow-y: auto;
}

/* Petites images verticales */
.images-droite img {
  width: 80px;
  height: auto;
  transition: transform 0.3s ease;
}

.images-droite img:hover {
  transform: scale(1.1);
}
  .bouton-projets {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: blue; /* bleu du texte */
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    text-decoration: none; /* pas de soulignement */
    background: none; /* pas de fond */
    border: none; /* pas de contour */
    padding: 8px 12px;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 1000;
  }

  .bouton-projets:hover {
    color: #0056b3; /* bleu plus foncé au survol */
    transform: translateY(-2px);
  }