p {
	line-height: 1.22;
	text-align: justify;
}

a {
  color: blue;
}



/* Logo du film */
.imageLogoFilm {
	width: 100%;
	margin-bottom: 20px;
}

.imageLogoFilm img {
	width: 20%;
	margin-left: 40%;
	margin-right: 40%;
}



/* Sommaire */
.sommaireGlobal {
  background-color: #D2D2FF;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 10px;
  margin-left: 10px;
  padding: 10px;
  width: 90%;
  border: 2px #C3C3FF solid;
  border-radius: 15px;
}

.sommaireGlobal a { 
  text-decoration: none;
  color: blue;
}

.sommaireGlobal p {  
  transition: 0.1s;
}

.sommaireGlobal p:hover {
  -ms-transform: scale(1.003);
  -webkit-transform: scale(1.003);
  transform: scale(1.003);
}



/* Synopsis du film */
.synopsisFilmIMG {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.synopsisFilmIMG img {
  width: 30%;
  border-radius: 15px;
  margin-left: 10px;
  margin-right: 10px;
}



/* Casting vocal */
/* Casting vocal - Menu */
.castingVocalMenuPersonnageGlobal {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px #B4B4FF solid;
}

.castingVocalMenuPersonnage {
  width: 120px;
  margin-left: 10px;
  margin-right: 10px;
  transition: 0.15s;
}

.castingVocalMenuPersonnage:hover {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  cursor: pointer;
}

.castingVocalMenuPersonnage img {
  width: 100%;
  border-radius: 40%;
}


/* Casting vocal - Personnage */
.castingVocalPersonnagesGlobal {
  width: 100%;
  margin-bottom: 20px;
}

.castingVocalMenuPersonnageLangue {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  margin-bottom: 20px;
}

.castingVocalPersonnageTexte {
  width: calc(70% - 20px);
  padding-left: 10px;
  padding-right: 10px;
}

.castingVocalPersonnageImage {
  width: 30%;
}

.castingVocalPersonnageImage img {
  width: 75%;
  margin-left: 12.5%;
  margin-right: 12.5%;
  border-radius: 15px;
}



/* Les références */
/* Références dans les images du film */
.referencesIconeListeGlobal {
  width: 65%;
  height: 360px;
  margin-left: 17.5%;
  margin-right: 17.5%;
  margin-bottom: 10px;
  border-bottom: 2px #A5A5FF solid;
  overflow-y: auto;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.referenceIconeListe {
  width: 150px;
  height: 84px;
  margin: 10px;
  border: 2px #FFFFFF solid;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  transition: 0.1s;
}

.referenceIconeListe img {
  width: 100%;
  height: 100%;
}

.referenceIconeListe:hover {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  cursor: pointer;
}

.referencesImageGlobal {
  width: 65%;
  margin-left: 17.5%;
  margin-right: 17.5%;

  background-color: black;
  border-radius: 15px;
}

.referencesImageListe {
  width: 100%;

  display: flex;
  flex-wrap: no-wrap;
  justify-content: left;
  overflow-x: hidden;
}

.referenceImage {
  position: relative;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  display: none;
}

.referenceImage span {
  position: absolute;
  width: calc(100% - 20px);
  height: 25.5%;
  bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
  align-content: center;
  text-align: center;
  background-color: #0000007F;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  color: white;
  user-select: none;
}

.referenceImage img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

.referenceImage:nth-child(1) {
  display: block;
}


/* Références dans la bande-son */
.lecteurMusicalGlobal {
  width: calc(100% - 4px);
  border: 2px #A5A5FF solid;
  border-radius: 10px;

  display: flex;
  flex-wrap: wrap;

  background-color: #D2D2FF;
}

.lecteurMusicalListe {
  width: calc(30% - 2px);
  height: 640px;
  border-right: 2px #A5A5FF solid;
  overflow-x: auto;
}

.lecteurMusicalMorceau {
  width: calc(100% - 64px);
  border: 2px #B4B4FF solid;
  border-radius: 10px;

  margin: 20px;
  padding-left: 10px;
  padding-right: 10px;

  background-color: #C3C3FF;
  transition: 0.15s;
}

.lecteurMusicalMorceau:hover {
  -ms-transform: scale(1.03);
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  cursor: pointer;
}

.lecteurMusicalMorceau:hover p {
  cursor: pointer;  
}

.lecteurMusicalDescription {
  width: calc(70% - 20px);
  height: 620px;
  padding: 10px;
  overflow-x: auto;
}

.lecteurYT {
  width: 400px;
  height: 400px;
  border-radius: 15px;
}



/* Ajustement téléphone (pas 100% compatible) */
@media all and (max-width: 1100px) {
  h2 {
    font-size: 35px;
  }

  p {
    font-size: 15px;
  }

  ul {
    margin-bottom: 60px;
  }

  .imageLogoFilm img {
    width: 60%;
    margin-left: 20%;
    margin-right: 20%;
  }



  /* Sommaire */
  .sommaireGlobal {
    width: 95%;
  }

  .sommaireGlobal h2 {
    font-size: 50px;
  }

  .sommaireGlobal ul {
    margin-bottom: 0;
  }

  .sommaireGlobal a {
    font-size: 25px;
  }



  /* Synopsis du film */
  .synopsisFilmIMG img {
    width: 80%;
    margin-bottom: 20px;
  }



  /* Casting vocal */
  /* Casting vocal - Personnage */
  .castingVocalMenuPersonnage {
    width: 200px;
    margin-bottom: 10px;
  }

  .castingVocalPersonnageTexte {
    width: calc(95% - 20px);
    margin-left: 2.5%;
    margin-right: 2.5%;
  }

  .castingVocalPersonnageTexte h3 b u {
    font-size: 40px;
  }

  .castingVocalPersonnageTexte p {
    font-size: 20px;
  }

  .castingVocalPersonnageImage {
    width: 95%;
    margin-left: 2.5%;
    margin-right: 2.5%;
  }

  .castingVocalPersonnageImage img {
    width: 70%;
    margin-left: 15%;
    margin-right: 15%;
  }



  /* Les références */
  /* Références dans les images du film */
  .referencesIconeListeGlobal {
    width: 90%;
    height: 720px;
    margin-left: 5%;
    margin-right: 5%;
  }

  .referenceIconeListe {
    width: 200px;
    height: 113px;
  }

  .referencesImageGlobal {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }


  /* Références dans la bande-son */
  .lecteurMusicalListe {
    width: calc(100% - 2px);
    height: 570px;
    border-bottom: 2px #A5A5FF solid;
    border-right: 0px;
  }

  .lecteurMusicalMorceau p {
    font-size: 25px;
  }

  .lecteurMusicalDescription {
    width: calc(100% - 20px);
    height: 800px;
  }

  .lecteurMusicalDescription h2 {
    font-size: 45px;
  }

  .lecteurMusicalDescription h3 {
    font-size: 35px;
  }

  .lecteurYT {
    width: 500px;
    height: 500px;
    border-radius: 20px;
  }
}