body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background: grey;
  color: black;

    /* ajout pour que le footer soit forcément en bas*/
  min-height: 100vh;
  display: flex;
  flex-direction: column;


}


img {
  max-width: 100%;
  width: 40%;
  height: auto;
  display: inline-block;
  margin: 15px auto;
}


p {
  line-height: 1.6;
  font-size: 18px;
}


.paragraphe {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}


main {
  flex: 1;
}


/* Titres */
h1 {
  text-align: center;
  color: #050708;
  margin-top: 20px;
  margin-bottom: 20px;
}

h2 {
  text-align: center;
  margin-top: 30px;
}

/* Menu en haut de la page */
.menu ul {
  list-style: none;
  display: flex;
  gap: 50px;
  justify-content: center;
  padding: 20px 0;
  background-color: #000;
}

.menu a {
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  transition: transform 0.2s, background 0.2s;
}

.menu a:hover {
  background-color: #559bf6;
  transform: scale(1.1);
}

/* pied de la page */
footer {
  text-align: center;
  padding: 15px;
  background: #000;
  color: white;
  margin-top: auto;
}


audio {
  display: block;
  margin: 30px auto;
}

/* conteneur des images sous l’audio pour My town */
.images-dessous {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}


.images-dessous img {
  width: 30%;
}

iframe {
  border: none;
  display: block;
  margin: 20px auto;
} 

.pdf {
    width: 100%;
    height: 100vh;
    border: none;
}
/*pour la video youtube sinon j'ai une erreur sur W3C validator*/
.video {
    border: none;
}
