@charset "UTF-8";

/* Style global */
html, body {
  margin: 5px;
  padding: 0px;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: Helvetica, Arial, sans-serif;
}

/* Texte */
p {

  color: blue;
  margin: 0;
 margin-left: 10px;
  z-index: 10;
  font-weight: 500;
}
p2 {

  color: blue;
  margin: 0;
	margin-top: 20px; 
  z-index: 10;
	 margin-left: 10px;
  font-weight: bold;
	
}
p1 {
  position: fixed;
  bottom: 20px;
  left: 20px;
  margin: 0;
  font-family: Helvetica, sans-serif;
  color: blue;
 text-decoration: none;
}
a {
  text-decoration: none; /* enlève le soulignement */
  color: blue; /* tu peux changer la couleur ici si tu veux */
}
/* Conteneur principal */
.composition {
  display: flex;
  flex-wrap: wrap;          /* Permet de passer à la ligne */
  justify-content: center;  /* Centrage horizontal global */
  align-content: center;    /* Centrage vertical global */
  gap: 5px;                 /* Espace régulier entre les éléments */
  width: 100vw;
  height: 92vh;
  box-sizing: border-box;
  padding: 10px;
}

/* Images et vidéos */
.composition img,
.composition video {
  max-height: 45vh;         /* Ajuste pour tenir dans la fenêtre */
  max-width: 45vw;
  height: auto;
  width: auto;
  object-fit: contain;      /* Ne coupe rien */
  border-radius: 4px;
  background: white;
}
  .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);
  }
