html{
    font-family: 'Roboto', sans-serif;
}

header{
    display: flex;
    margin-top: -8px;
    margin-left: -8px;
    margin-right: -8px;
}

header h2{
    font-size: 300%;
    color: red;
}

.Logo{
    width: 200px;
    height: 200px;
}

.Hautdepage{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.Menus{
    margin-left: 30px;
    margin-right: 30px;
}

.Menus a{
    margin-left: 25px;
    margin-right: 25px;
    color: black;
    font-size: larger;
    font-weight: bold;
}

.contenu{
    margin: 50px;
    border-top: 5px solid red;
    align-items: start;
    font-size: x-large;
}

.Texte{
    line-height: 130%;
}

.Texte2{
    text-align: center;
}

.Photos{
    display: flex;
    line-height: 150%;
}

.President1{
    display: flex;
    margin-right: auto;
}

.President2{
    display: flex;
    margin-left: auto;
}

.President1 img{
    height: 200px;
}

.President2 img{
    height: 200px;
}

.President1 p{
    margin-left: 10%;
    width: max-content;
}

.President2 p{
    margin-right: 20%;
    text-align: right;
    width: max-content;
}

footer{
    background-color: red;
    color: white;
    padding: 16px;
    margin-bottom: -8px;
    margin-left: -8px;
    margin-right: -8px;
    text-align: center;
    align-items: center;
}

@media screen and (max-width: 428px) { /* iPhone 12 en mode portrait */

    html {
        max-width: 100% !important;
    }

    body {
        max-width: 100% !important;
    }
    
    header {
    display: flex;
    max-width: 100% !important;
    }
    
    header h2 {
        font-size: 110%;
    }
    
    .Hautdepage {
        display: block;
    }

    .Logo {
        width: 100px;
        height: 100px;
    }

    .Menus {
        margin-top: -20px;
        font-size: small;
    }

    .Menus a {
        margin: 5px 0;
        display: block;
    }

    .contenu {
        display: block;
        margin: 20px;
        max-width: 100% !important;
    }

    .Texte {
        font-size: small;
    }
    
    .Texte2 {
        font-size: medium;
    }
    
    .Texte3 {
        font-size: medium;
    }
    
    .Photos {
        display: block;
        width: 100%;
    }
    
    .Photos p {
        font-size: small;
    }
    
    .Photos .Président1 {
        width: 100%;
    }
    
    .President1 {
        display: flex;
        margin-right: auto;
    }
    
    .President1 img {
        width: 40%;
        height: 40%;
    }
    
    .President2 {
        display: flex;
        margin-left: auto;
        justify-content: flex-end;
    }
    
    .President2 img {
        width: 40%;
        height: 40%;
    }
    
    footer {
        max-width: 100% !important;
    }
}