
/* Pied de page */

footer{
  margin-top: 20px;
  background: linear-gradient(to right, red, salmon);
  box-shadow: 5px 2px 5px #333333;
}


footer p{
  text-align: center;
  color: white;
  text-shadow: 2px 0 0 #000;
  padding: 30px;
  font-size: 1.3em;
}

footer p a{
  /*text-decoration: underline*/
  color: white;
  font-family: Georgia, serif;

}

footer p a:hover{
  text-decoration: none;
  color: black;
  font-family: Georgia, serif;
  text-shadow: none;
}

@media all and (max-width: 795px){
  #separateur{
    display: none;
  }
  
  footer p{
    display: flex;
    flex-direction: column;
  }
  
  .parFooter{
    display: block;
    margin: 7px;
  }
}

/* Créer un footer fixe en bas de la page (A MODIFIER SI BESOIN) */

html, body{
    height: 100%;
}

body{
  display: flex;
  flex-direction: column;
}

section{
  padding: 30px;
  text-align: center;
  font-size: 1.6em;
  flex-grow: 1;
}
