<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.logo {
  width: 100%;
  text-align: left;
}
.logo img {
  max-width: 200px;
  height: auto;
  margin: 20px 0px 10px 20px;
  text-align: left;
}
.active {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 0px 16px;
}
.navigation {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #ffffff;
  height: 40px;
  margin-bottom: 40px;
}
.navigation a {
  color: #ffffff;
  font-size: 1.3em;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin: 0 20px;
  line-height: 40px
}
.navigation a:hover {
  color: #FF0000;
}
.container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 70%;
  /*background-color: aqua;*/
  margin: 20px 0 0 0;
}
.container img {
  width: 120px;
  height: 160px;
}
.container-pt {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 70%;
  /*background-color: aqua;*/
  margin: 20px 0 0 0;
}
.container-pt img {
  width: 100px;
  height: 133px;
}
.container-gd {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 70%;
  /*background-color: aqua;*/
  margin: 20px 0 0 0;
}
.container-gd img {
  width: 150px;
  height: 200px;
}
.titre {
  color: rgba(255, 255, 255, 0.80);
  max-width: 60%;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.50);
  font-size: 1.5em;
  text-transform: uppercase;
  margin: 40px 0px 0px 0px;
}
.overlay-image {
  position: relative; /* Important pour positionner le contenu par dessus, relatif Ã&nbsp; l'Ã©lÃ©ment */
  display: block; /* Prendra la forme de son contenu */
  margin: 5px 5px;
}
.overlay-image img {
  vertical-align: middle; /* Ou display: block, pour enlever l'espace blanc */
}
.overlay-image .hover-image {
  /* Positionnement du contenu hover */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* Effets de transition */
  opacity: 0; /* On cache l'Ã©lÃ©ment via son opacitÃ© */
  transition: opacity 0.25s ease-in-out; /* Effet de transition sur le hover */
  /* Style du contenu hover */
  background-color: rgba(255, 0, 0, 0.6); /* Couleur par dÃ©faut */
  /* Centrer le contenu */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.overlay-image:hover .hover-image {
  opacity: 0.8; /* Lors du hover, on remet l'opacitÃ© Ã&nbsp; 1 */
}
.container-productions {
  display: flex;
  flex-direction: row;
  align-items: left;
  justify-content: left;
  max-width: 800px;
  /*background-color: aqua;*/
}
.container-productions img {
  margin: 0px 30px 0px 0px;
}
.title {
  font-family: 'Jost', sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  color: #ffffff;
  text-align: left;
}
.title2 {
  font-family: 'Jost', sans-serif;
  font-size: 0.8em;
  font-weight: 400;
  font-style: italic;
  color: rgb(204, 204, 204);
  text-align: left;
}
.title3 {
  font-family: 'Jost', sans-serif;
  font-size: 0.9em;
  font-weight: 400;
  font-style: normal;
  color: rgb(204, 204, 204);
  text-align: left;
  margin-top: 10px;
}
.text {
  font-family: 'Jost', sans-serif;
  font-size: 0.9em;
  font-weight: 400;
  font-style: normal;
  color: rgb(255, 255, 255);
  text-align: left;
  margin-top: 20px;
}
.poster img {
  max-width: 200px;
}
@media only screen and (max-width:820px) {
  .container-productions {
    max-width: 90%;
  }
}
@media only screen and (max-width:510px) {
  .logo img {
    max-width: 150px;
  }
  .navigation {
    height: 30px;
    margin-bottom: 30px;
  }
  .navigation a {
    font-size: 1.1em;
    letter-spacing: 0.5px;
    margin: 0 10px;
    line-height: 30px
  }
  .container {
    display: inline-flex;
    max-width: 90%;
    margin: 20px 0 0 0;
  }
  .container img, .container-gd img, .container-pt img {
    width: 220px;
    height: 293px;
  }
  .overlay-image {
    position: relative; /* Important pour positionner le contenu par dessus, relatif Ã&nbsp; l'Ã©lÃ©ment */
    display: block; /* Prendra la forme de son contenu */
    margin: 20px 5px;
  }
  .container-productions {
    display: block;
    align-items: center;
    justify-content: center;
    max-width: 90%;
  }
  .container-productions img {
    margin: 0px;
    text-align: center;
  }
}</pre></body></html>