/* grille portfolio*/ 
.container { 
  width: 80%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 2px;
}
.labeur {
  grid-column-start: 1;
  grid-column-end: span 3;
  font-family: "BBB-labeur";
}
.partie {
  grid-column-start: 1;
  grid-column-end: span 4;
  font-size: 100%;
  font-family: "BBB-partie";
  color: #BD2B2B;
}
.legende {
  grid-column-start: 1;
  grid-column-end: span 2;
  color: #BD2B2B;
  font-size: 75%;
  font-family: "BBB-legende";
}
.image {
  grid-column-start: 1;
  grid-column-end: span 4;
}
.image img {
  width: 100%;
  border-radius: 7px;
}