@charset "UTF-8";
/* CSS Document */

 html, body {
      margin: 5px;
      padding: 0;
      width: 100%;
      height: 100%;
      overflow: hidden; /* empêche le scroll */
    }

    /* Style pour le GIF */
.image-verticale {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 69vw;             /* largeur réduite pour créer des marges */
  height: auto;            /* garde les proportions */
  transform: translate(-50%, -50%); /* centre parfaitement l’image */
  object-fit: contain;     /* garde l’image entière visible */
/* si tu veux que le fond autour reste blanc */

  z-index: -1;             /* derrière le contenu */
}

 .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);
  }

p {
  margin: 20px;   
	 color: blue;
  text-decoration: none;/* espace depuis le bord */
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif"
}

h a {
  color: blue;
  text-decoration: none;

}

h {
  margin: 20px;  
	  color: blue;
  text-decoration: none;/* espace depuis le bord */
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  font-weight: bold;
}
