
      
body {
 background: rgb(134,24,200);
background: linear-gradient(90deg, rgba(134,24,200,1) 11%, rgba(222,220,108,1) 19%, rgba(144,226,169,1) 30%);
}

.wrapper {                                                /* l'ensemble de la page */
  padding-left: 20%;
  padding-right: 20%;
  display: flex;
  flex-direction: column;                                 /* alignement vertical */
  gap : 20px;                                             /* espace entre les trois éléments de la page*/
}

.head {                                                   /* le header */
  display: flex;
  flex-direction: row;                                     /*alignement horizontal */
  justify-content: space-around;                          /* l'espace entre les éléments */
  align-items: center;                                     /* aligne sur un axe le centre des chevaux et celui du titre */
  border : 1px solid;
}

.asciibanniere {
  font-size : 1.6em;
}

.titre {
  font-family : "arial", sans-serif;
  font-size : 2em;
  line-height: 5px;                                         /* espace entre le texte et la ligne du haut (réduit) */
}

.menu {
  line-height : 5px;
  font-family: arial;
  display: flex;
  flex-direction: row;
  border: 1px solid;
  flex-wrap : wrap;                          /* les items s'enroulent (et conservent leur format) quand l'écran est redimensionné */
  justify-content : space-around;
  }
  
.bouton a {                                  /* parametres des liens du menu */
  color: rgb(27, 148, 77);

}

.welcome {                                  /* bloc du message de bienvenue */
  font-family: "Arial", sans-serif;
font-size: 26px;
letter-spacing: 3.2px;
color: #000000;
font-weight: 700;
text-decoration: none;
font-style: italic;
font-variant: normal;
text-transform: lowercase;
line-height: 20px;
text-align: center;
}

.contenu {                                       /* l'ensemble du contenu */
  font-family: arial;
  border: 1px solid;
  padding: 20px;
}

.contenuAB {                                  /* englobe le gif et la présentation */
  display : flex;
  flex-direction : row;
  align-items: flex-start;

  
}

.contenuA IMG{                                /* parametres du gif */
  width : 100%;
}

.contenuA {                                  /* le block du gif */
  flex: 1;
 
}

.contenuB {                                 /* le block de présentation */
  flex: 2;
  padding: 10px;
  border: solid 1px;
margin-right: 10px;
margin-left: 10px;
  }

h2 {
  font-size : 20px;
  font-style: italic;
}

  hr {                                                       /* ligne de séparation */
    display: block;
    height: 1px;
    width: 100%;
    text-align: center;
    border: 0;
    border-top: 1px solid #000;
    margin-top: 0.05em;
    padding: 0;
}


 @media only screen and (max-width: 768px) {                                         /*!!!version CSS adaptee téléphone!!!*/
 
 
 .wrapper {                                                /* l'ensemble de la page */
  padding-left: 10%;
  padding-right: 10%;
 }
 
 .titre {                                                   
 font-size : 1.5em;}
 
 .asciibanniere {
  font-size: 1em;}
 
 }
 
