/*texte d'animation du haut*/
#animation-top {
position: relative ;
top: 60px;
     font-size: 10px;
      white-space: pre-wrap ;
      text-align: center;
      padding: 3px;
    }
    #animation-top {
      color : #F4B400; 
    }
    .letter {
      display: inline-block;
      opacity: 0;
      animation: fadeTop 0.05s forwards;
    }
    @keyframes fadeTop {
      to {
        opacity: 1;
      }
    }



/*rejoindre la formation et le bouton*/
#div1 {  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
#div1 a, p {
   color: black ;
   font-size: 14px;
}

 #rejoindre  {
      display: inline-block;
      animation: fadeInOut 2s infinite;
      font-weight: bold;
    }

   @keyframes fadeInOut {
      0% { opacity: 0; }
      20% { opacity: 1; }
      80% { opacity: 1; }
      100% { opacity: 0; }
    }
