/*Matias Serrano Grilo
  Le 09 janvier 2025
  Projet du module 293 page des style css de la page "les differentes pratiques"
  */

h1 {
    font-size: 5em;
    margin: 80px;
    text-align: center;
}

div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 150px;
}

p {
    text-align: justify;
    flex: 1;
    max-width: 800px;
    margin-right: 100px;
    line-height: 1.3;
}

img {
    width: 30%;
}

@media screen and (max-width: 1000px) {
    div {
        display: block;
        margin: 0%;
    }

    p {
        text-align: justify;
        margin: 0;
    }

    h1 {
        text-align: center;
        margin: 40px;
    }

    img {
        width: 100%;
        margin-top: 50px;
    }

}