body {
    margin: 0;
    padding:0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: white;
}
#grille {
    /* grille en mode grid*/
    height: 100vh;                                      /* Toute la hauteur de l'écran*/
    display: grid;
    grid-template-columns: 4fr 1fr;                     /* 2 colonnes */
    grid-template-rows: 1fr 1fr 4fr 1fr;                /* 4 lignes */
}
header {
    background-color: #0065a7;
    grid-column-start: 1;                               /* placement horizontal début : 1 */
    grid-column-end: 3;                                 /* fin: 3 sur les 2 colonnes */
    text-align: center;
}
nav {
    background-color: #124b78;
    grid-column-start: 1;                               /* placement horizontal début : 1 */
    grid-column-end: 3;                                 /* fin: 3 sur les 2 colonnes */
    text-align: center;
}
#main {
    background-color: #16a2c5;
    text-align: center;
}
aside {
    background-color: #5275ad;
    text-align: center;
}
footer {
    background-color: #7cccce;
    grid-column-start: 1;                               /* placement horizontal début : 1 */
    grid-column-end: 3;                                 /* fin: 3 sur les 2 colonnes */
    text-align: center;
}

@media screen and (max-width: 959px) {
    #grille {
        grid-template-columns: 1fr;                     /* 1 colonne */
        grid-template-rows: 1fr 4fr repeat(3, 1fr);     /* 5 lignes */
    }
    header,nav,#main,aside,footer {                     /* order=0 pour header*/
        grid-column-start: 1;                           /* placement horizontal début : 1 */
        grid-column-end: 2;                             /* fin: 2 sur 1 colonne */
    }
    #main {
        order: 1;
    }
    nav {
        order: 2;
    }
    aside {
        order: 3;
    }
    footer {
        order: 4;
    }
}