/*Matias Serrano Grilo
  Le 09 janvier 2025
  Projet du module 293 page des style css de la page "les motos utilisées"
  */

h1 {
    font-size: 5em;
    text-align: center;
}

#conteneur_intro_page_3 {
    display: flex;
    text-align: center;
    justify-content: center;
    padding-bottom: 100px;
}

#conteneur_intro_page_3 p {
    width: 40%;
    line-height: 1.4;
}

th,
td {
    border: 1px solid black;
}

table {
    border: 3px solid black;
    border-collapse: collapse;
}

#table {
    display: flex;
    justify-content: center;
    padding-bottom: 100px;
    text-align: center;
}

th {
    background-color: rgb(121, 120, 120);
    padding: 20px;
}

td {
    background-color: rgb(223, 221, 221);
    padding: 30px;
}

#texte_tarif {
    text-align: center;
}

img {
    width: 25%;
    padding: 20px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.container p {
    max-width: 800px;
    text-align: justify;
}

@media screen and (max-width: 1000px) {
    #conteneur_intro_page_3 p {
        width: 100%;
    }

    .container {
        flex-direction: column;
        text-align: center;
    }

    img {
        width: 100%;
    }

    .inverse {
        flex-direction: column-reverse;
    }

    #tarrif {
        font-size: 40px;
    }

    #table {
        display: flex;
        justify-content: center;
        width: 100%;

    }

    table {
        font-size: 10px;
    }

    th,
    td {
        padding: 6px;
    }
}