.titre-anime {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-shadow:-2px -2px 0 #000,2px -2px 0 #000,-2px 2px 0 #000,2px 2px 0 #000,-3px 0px 0 #000,3px 0px 0 #000,0px -3px 0 #000,0px 3px 0 #000;
  color: var(--gris-clair);
  font-size:5rem;
  @media (min-width: 768px){font-size:7rem;}
  @media(min-width:1024px){font-size:8rem;}
  @media(min-width:1280px){font-size:9rem;}
  transform: translateY(-40vh);
  animation: deplace 1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 0.5s;
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape){flex-direction: row;align-items: center;}
  @media (min-width: 1024px){flex-direction: row;align-items: center;}
}
@keyframes deplace {0% {transform: translateY(-30vh);} 100% {transform: translateY(0);} }
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape){
    @keyframes deplace { 0% {transform: translateY(-40vh);} 100% {transform: translateY(-10vh);} } 
}
@media(min-width:1024px){
    @keyframes deplace { 0% {transform: translateY(-40vh);} 100% {transform: translateY(-5vh);} }
}
.mot {
  display: flex;
  align-items: center;
  margin: 0 0.1em;
}
.lettre {
  color: var(--bleu-clair);
  display: inline-block;
}
.lettres {
  display: inline-block;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: all var 2s ease-in-out;
  animation: ecarte 2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 3s;
}
@keyframes ecarte {
  0% {
      max-width: 0;
      opacity: 0;
      transform: translateX(-5px);
      @media (min-width: 1280px){transform: translateX(-10px);}
  }
  10% {
      opacity: 1;
  }
  100% {
    max-width: 90vw;
    opacity: 1;
    transform: translateX(0);
  }
}
.soustitre1-anime {
  color: var(--bleu-fonce);
  font-size:5rem;
  @media(min-width:769px){font-size:6rem;}
  @media(min-width:1024px){font-size:7.5rem;}
  @media(min-width:1280px){font-size:9rem;}
  text-align:center;
  margin:0 auto;
  text-wrap: nowrap;
  overflow: hidden;
  width: 0;
  opacity: 0;
  transform: rotate(-3deg);
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape){transform: translateY(-10vh);}
  @media(min-width:1024px){transform: translateY(-5vh);}
  @media(min-width:1280px){transform: translateY(-10vh);}
  animation: ecriture 1.5s steps(30, end) forwards;
  animation-delay: 2s;
}
@keyframes ecriture {
  0% { width: 0;opacity: 0; }
  1% { opacity: 1; }
  100% { width: 90%; opacity: 1; }
}
.soustitre2-anime, .soustitre3-anime{
  text-align:center;
  overflow: hidden;
  opacity: 0;
  animation: apparition 1s steps(30, end) forwards;
  @media(min-width:1024px){transform: translateY(5vh);}
  @media(min-width:1280px){transform: translateY(10vh);}
}
.soustitre2-anime {
  font-size:2rem;
  @media(min-width:481px){font-size:2.2rem;}
  @media(min-width:769px){font-size:3rem;}
  @media(min-width:1024px){font-size:4rem;}
  @media(min-width:1280px){font-size:5rem;}
  color: var(--jaune);
  animation-delay: 3.5s;
  text-shadow:-2px -2px 0 var(--orange),2px -2px 0 var(--orange),-2px 2px 0 var(--orange),2px 2px 0 var(--orange),-3px 0px 0 var(--orange),3px 0px 0 var(--orange),0px -3px 0 var(--orange),0px 3px 0 var(--orange);
}
.soustitre3-anime {
  max-width: 90vw;
  overflow-wrap: break-word;
  font-size:2rem;
  @media(min-width:481px){font-size:2.2rem;}
  @media(min-width:769px){font-size:2.6rem;}
  @media(min-width:1024px){font-size:3.2rem;}
  @media(min-width:1280px){font-size:4rem;}
  color: var(--gris-clair);
  animation-delay: 5s;
  span{text-wrap: nowrap;}
}
@keyframes apparition {
  0% {opacity: 0;} 100% {opacity: 1;}
}