/*Matias Serrano Grilo
  Le 09 janvier 2025
  Projet du module 293 page des style css de la page "les artistes que j'aime"
  */
h1 {
  font-size: 5em;
  text-align: center;
  padding: 30px;
}

div {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.container {
  flex-direction: column;
}

p {
  max-width: 500px;
  padding: 15px;
}

@media screen and (max-width: 1000px) {
  div {
    flex-direction: column;
  }

  .reverse {
    flex-direction: column-reverse;
  }

  p {
    padding: 0%;
  }

}