* {
  margin: 0;
}
body {
   font-family: 'Manrope', sans-serif; 
  font-size: 1.1em;                      /* 1em */
  background-color: #1f2039;
}
p,
li {
  font-size: 1.1em;
  color: #f9f8ff;     /* presque blanc #f9f8ff */
}
em {
  color: #55de9c;    /* YFIC #a5b4fc */
  font-style: normal;
}
h1 {
  font-size: 2.8em;
  color: #a5b4fc;
  font-family: 'Montserrat', sans-serif;     /*  Montserrat Eater*/
}

h2 {
  color: #f9f8ff;     /* presque blanc #f9f8ff */
  font-size: 1.5em;
  font-style: italic;
}
.cta {                       /*  acronyme de Call To Action */
  display: inline-block;     /* permet de traiter en bloc.. mettre padding...border etc */
  background: linear-gradient(#8e86b5, #acaeed);
  color: white;
  border-radius: 20px;     /*  50px */
  padding: 5px 15px;      /*  20px 30px */
}
.cta:hover {
  background: linear-gradient(#696484, #8788ba);
  text-decoration: none;
}
.cta img {
  height: 25px;
}

header,  
footer {
  background-color: #a50f0f;   /*  white  */
  padding-bottom: 5px;         /* 20 px 50px padding tout court*/
}
a {
  color: rgb(207, 240, 91);        /* rgb(216, 20, 30)   #242424  #1f2039 */
  text-decoration: none;
  font-size: 1.4em;                /* pas de font size à l origine */             
}
a:hover {
  text-decoration: underline;
}

footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.accueil-introduction {
    display: flex;
    flex-direction: row;
    max-width: 1200px;  
    align-items: flex-start;
    margin: auto;
  }
  .accueil-introduction h1 {
    margin-bottom: 15px;      /* 15px espace vertical entre titre et texte */ /* ========   INDEX =========*/
  }
  .accueil-introduction p {   /* 30px espace vertical entre  texte et le lien en forme de bouton*/ /* ========   INDEX =========*/
    margin-bottom: 30px;
  }
  .accueil-introduction div {
    padding-right: 30px;       /* 80px espace texte et image */    /* ========   INDEX =========*/
  }
  .accueil-introduction img {
    padding-top: 20px;       /* 20px espace au dessus image */    /* ========   INDEX =========*/
  }



  .accueil-coordonnees {               /* ==============   INDEX ==========================*/
    margin: auto;
    border-bottom: 5px solid #a6ced8;
  }
  .accueil-coordonnees h1{               /* ==============   INDEX ==========================*/
    text-align: center;
  }
  .carre-p {                            /* ==============   INDEX ==========================*/
    border-right: 1px solid #8e86b5;
    border-bottom: 1px solid #8e86b5;
    padding: 50px;
    width: 60%;
    margin: auto;
    margin-bottom: 40px;
  }


.section-contact {                  /* =========      INDEX  ================  */
    margin-top: 20px;
    
  }
  .section-contact h2 {             /* =========      INDEX  ================  */
    color: #a5b4fc;
    text-align: center;
    margin-bottom: 50px;
   }                       
  form {                           /* =========      INDEX  ================  */
    display: flex;
    flex-direction: column;        /* column */
    max-width: 1000px;
    margin: auto;
    color: white;   /* couleur des textes de la forme */
  }
.form-nom-email {                  /* =========      INDEX  ================  */
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
.form-column {                     /* =========      INDEX  ================  */
    flex: 1;           /* https://www.zonecss.fr/proprietes-css/flex-css.html */
                       /* flex property is a shorthand for the flex-grow, flex-shrink, and the flex-basis properties. */
                       /* Its default value is 0 1 auto */
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }
input,                                    /* =========      INDEX  ================  */
  textarea {
    padding: 15px;
    border-radius: 5px;
    border: none;
  }
label {                                        /* =========      INDEX  ================  */
    margin-bottom: 10px;          /* distance entre textes et zones de saisie */
  } 
 input[type='submit'] {                      /* =========      INDEX  ================  */
    width: 200px;
    margin: auto;
    margin-top: 30px;
  }

.chansons_entete div {               /* ==============   PAGE_CHANSONS ==========================*/
    text-align: center;
  }

.chansons_liste {               /* ==============   PAGE_CHANSONS ==========================*/
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    /* border: 1px solid green;  */
    width: 90%;                    /* param width et margin auto pour diminuer et centrer le pavé de la liste des chansons*/
    margin: auto;
  }

.chansons_liste_entete {               /* ==============   PAGE_CHANSONS ==========================*/
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
    color: #a5b4fc;
    font-weight: 900;
  }
.chanson_titre_auteur {               /* ==============   PAGE_CHANSONS ==========================*/
    display: flex;
    justify-content: space-around;
    font-style: italic;
  }
.largeur_titre {                     /* ==============   PAGE_CHANSONS ==========================*/
    display: flex;
  width: 490px;
  /* border: 1px solid red; */
  }
.largeur_auteur {                    /* ==============   PAGE_CHANSONS ==========================*/
  width: 300px;
  /* border: 1px solid yellow;  */
  }


.lien-icone {                        /* =========      PAGE_HEADER  ================  */
  margin-left: 30px;
}
.lien-icone:hover {                  /* =========      PAGE_HEADER  ================  */
  opacity: 0.5;
}

main {
  margin: 60px;                       /* essai en cours pour menu fixe avec top = 0 */
}


nav {                                /* =========      PAGE_HEADER  ================  */
   position: fixed;                    /* essai en cours pour menu fixe avec top = 0    https://www.youtube.com/watch?v=CuG_pyrc2KA  */
   top: 10px;
   left: 5%; 
   width: 90%;
  background-color: #0a374c;       /* #95cfea    */

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;    /* space-between   space-around  space-evenly */

}

nav a {                             /* =========      PAGE_HEADER  ================  */
  margin-left: 15px;
  margin-right: 15px;
}


section {
  padding: 20px;      /*  80px   */
   color: white    /* YFIC test echo en php de la page actu.php */
}
