/*Matias Serrano Grilo
  Le 09 janvier 2025
  Projet du module 293 page des style css de la page "les figures"
  */

#image {
    background-image: url('../img/image_site_web/page_4/image_p4_banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-position: center 30%;
    height: 500px;
}

h1 {
    text-align: center;
    font-size: 5em;
    padding-top: 50px;
    padding-bottom: 200px;
}

.container {
    display: flex;
    column-count: 2;
    align-items: center;
    justify-content: center;
    padding-bottom: 100px;
}

.container p {
    max-width: 800px;
    padding: 30px;
    text-align: justify;
}

h2 {
    font-size: 2em;
}

iframe {
    border: none;
}

@media screen and (max-width: 1000px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .container div {
        display: flex;
        flex-direction: column-reverse;
    }

    .reverse {
        flex-direction: column-reverse;
    }

    h1 {
        padding-bottom: 50px;
    }

    iframe {
        width: 100%;
    }
}