#conteneurInformation{
    min-height:auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

#blocMessageInformation{
    width: 80%;
    height: auto;
    background: var(--myTheme);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border: 1px solid black;
}

#titreMessageInfoInformation{
    margin: 0px;
    font-weight: bold;
    font-family: Georgia, 'Times New Roman', Times ;
    padding: 10px 10px 10px 10px;
    font-size: 20px;
}
#messageInfoInformation{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0px;
    padding: 0px 10px 10px 10px;
    font-size: 20px;
    word-wrap: break-word;
}

#blocNbPosteInformation{
    height: auto;
    width: 15%;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: var(--myTheme);
    border: 1px solid black;
}
#labelNbPosteInformation{
    height: 40%;
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
#NbPosteInformation{
    height: 50%;
    width: 90%;
    padding: 0;
    display: flex;
    text-align: center;
    margin-bottom: 10px;
    background: transparent;
    border: 0;
    font-size: 1.5vmax;
}

@media screen and (max-width: 950px) { 

    #conteneurInformation{
        display: flex;
        flex-direction: column;
    }
    #blocMessageInformation{
        margin-bottom: 20px;

    }
    #blocNbPosteInformation{
        flex-direction: row;
        width: 80%;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
    }
    #labelNbPosteInformation{
        width: auto;
        margin-bottom: 0;
    }
    #NbPosteInformation{
        width: 30%;
        text-align: right;
        font-size: 20px;
        margin-bottom: 0;

    }
}