/* BODY */
body{
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: black;
  color: #fff;
}

/* NAV    */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e0e0e0;
  padding: 10px;
}

.logo-img {
  width: 300px;
}

.LogoCliquable{
  background: transparent;
}

a {
  padding: 10px 20px;
  background-color: black;
  color: aliceblue;
  text-decoration: none;
}

a:hover {
  /* une transition de 100ms pour être smooth*/
  transition: 100ms;
  /* Agrandit de 8% */
  transform: scale(1.08);
}


h3{
  color: black;
}

/* MAIN*/

h1,h2 {
  display: flex;
  justify-content: center;
}
/* C'est juste les lignes */
.LigneGrise{
  padding: 1%;
  background-color: #fff;
}

/* Pour le reste du texte des époques */
.Orange{
  color: orange;
}

.AlignementTexteImages{
display: flex;
flex-direction: row;
}

.AlignementTexteImages img{
margin-right: 5%;
margin-bottom: 5%;
}

/* POur avoir le texte en column */
.TextesHistoires{
  display: flex;
  flex-direction: column;
}

/* C'est pour faire une marge sur toutes les images et textes de la giv */
.Marge{
  margin-left: 5%;
}

.Marge img{
    width: 40%;
}


















/* Footer */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e0e0e0;
  padding: 10px 20px;
  color: black;
  font-family: Arial, sans-serif;
}