main {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

#Info_Entreprise {
    border: 1px solid black;
    max-width: 1905px;
    max-height: 250px;
    height: max-content;
    gap: 10px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-content: center;
}

.texte-entete {
    display: flex;
    flex-direction: column;
    max-width: 1475px;
    text-align: center;
}

#Info_Profs {
    margin: 25px;
    max-width: 1905px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.Profs {
    border: 1px solid black;
    max-width: 930px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-evenly;
    padding: 10px;


    .texte-profs {
        margin: 0px;
        max-width: 710px;
        height: max-content;
        max-height: 150px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;

        h2 {
            margin: 0px;
        }

        p {
            margin: 5px;
            font-size: small;
            align-content: center;
        }
    }
}

/*Media Query qui change la hauteur des sections pour max-content*/
@media(max-width:1024px) {
    main {
        flex-direction: column;
    }

    #Info_Entreprise {
        max-height: max-content;
        flex-direction: column;
        align-items: center;

        >img {
            width: 200px;
            height: 175px;
        }

    }
}

@media(max-width:768px) {

    main {
        flex-direction: column;
    }

    #Info_Entreprise {

        flex-direction: column;
        align-items: center;

        >img {
            width: 200px;
            height: 175px;
        }

    }

    .Profs {
        flex-direction: column;
        align-items: center;

        >img {
            width: 150px;
            height: 150px;
        }

        .texte-profs {
            text-align: center;
            justify-content: center;
            max-height: max-content;
        }
    }

    footer {
        flex-direction: column;
        font-size: small;
    }

}