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;
    text-align: center;
    font-size: x-large;
}

.Resultats{
    display: flex;
    align-items: center;
}

.Resultats2{
    width: 100%;
}

.Resultats2 p{
    text-align: right;
}

.Resultats3{
    width: 50%;
    text-align: center;
}

.compteur {
    color: white;
    padding: 10px;
    margin-top: 20px;
    font-size: medium;
}

.photos {
    display: flex;
    align-items: center;
}

.photos img{
    width: 30%;
    margin-left: auto;
    margin-right: auto;
}

footer{
    height: 50px;
    background-color: red;
    color: red;
    margin-bottom: -16px;
    margin-left: -8px;
    margin-right: -8px;
}

@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;
    }
    
    .contenu .photos {
        display: block;
    }
    
    .contenu .photos img {
        width: 100%;
        margin-bottom: 50px;
    }

    .contenu img {
        max-width: 100%;
    }
}