html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	color: white; 
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #0000ff; /* fond bleu */
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-verticale {
  max-height: 90vh; /* laisse un peu de fond bleu visible */
  width: auto;
}
.texte-bas-gauche1 {
 position: absolute;
  bottom: 140px;
  left: 20px;
  color: white;
  font-size: 1rem;
  font-weight: bold; 
  text-align: justify;
  max-width: calc(30% - 20px);
}
.texte-bas-gauche {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 1rem;

  text-align: justify;
  max-width: calc(30% - 20px);
}


  .bouton-projets {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: white; /* 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);
  }
