@import url("https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap");

ul, ol {     /* enlève point pour les listes */
  list-style: none;
}    

a {
    text-decoration: none; /* Enlève le soulignement */
    color: #df304e; 
  }
  
  *,
  ::before,
  ::after {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {  
  margin: 0;      /* enlève marge blanche */
  padding: 0;     /* enlève marge blanche */
  font-family: "Shadows Into Light", cursive;
}


main{ 
    margin: 0 auto;
    max-width: 80rem;
    padding: 0 5rem;
}







.footer {
  background-color: #13406e;
  color: #FFFFFF; 
  padding: 20px;
  height: 120px; /* taille de la bande bleu */
  display: flex;
  align-items: center ;
  margin-top: 50px; /* espace entre le fooer et le reste */
  justify-content: center;
}





.en_tete{
  padding-bottom: 1%;
}

.gallery figure{
  padding-bottom: 0.5rem;
}

figure a, .en_tete, .navbar a {
  font-family: "Shadows Into Light", cursive;
}




.description{
  padding-bottom: 0.5rem;
}







nav {
  border-bottom: 1px solid black;
}

.crumbs ol {
  list-style-type: none;
  padding-left: 0;
}

.crumb {
  display: inline-block;
}

.crumb a::after {
  display: inline-block;
  content: ">";
  font-size: 80%;
  font-weight: bold;
  padding: 0 3px;
}








@media screen and (max-width: 1023px) {
  main{ 
    padding: 0 4rem;
  }
}

@media screen and (max-width: 767px) {  
  .en_tete{
      font-size: 1.5rem;
      text-align: center;
      margin-bottom: 5px;
    }

  main{ 
    padding: 0 3rem;
  }

  .gallery figure{
    padding-bottom: 1rem;
  }
}


