@charset "UTF-8";

/* --- Général --- */
html, body {
  margin: 5px;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  font-family: Helvetica, Arial, sans-serif;
}

/* --- Titre --- */
p1 {
  color: blue;
  text-align: left;
  font-weight: bold;
  margin: 12px 10px;
  font-size: 18px;
}

/* --- Grille 4x2 --- */
.composition {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 colonnes égales */
  grid-template-rows: repeat(2, 1fr);    /* 2 lignes égales */
  gap: 10px;                             /* même espace partout */
  width: 90vw;                           /* un peu de marge sur les côtés */
  height: 75vh;                          /* prend un peu moins que toute la fenêtre */
  margin: 0 auto;                        /* centrer horizontalement */
  box-sizing: border-box;
  padding: 10px;
}

/* --- Images et vidéos --- */
.composition img,
.composition video {
  width: 100%;
  aspect-ratio: 1 / 1;     /* carré */
  object-fit: cover;       /* remplit sans déformation */
  border-radius: 10px;
  display: block;
}

/* --- Bouton "projets" --- */
.bouton-projets {
  position: fixed;
  bottom: 15px;
  right: 15px;
  color: blue;
  font-size: 16px;
  text-decoration: none;
  background: none;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}

.bouton-projets:hover {
  color: #0056b3;
  transform: translateY(-2px);
}
.texte-bas {
	font-weight: normal;
  width: 90vw;                 /* même largeur que la grille */
  margin: 65px auto 50px;      /* espace au-dessus et en dessous */
         /* centrer le texte */
  font-size: 16px;
  color: blue;
  font-weight: 500;
  line-height: 1.4;
}
