html {
    font-family: Arial, Helvetica, sans-serif;
}
.conteneur {
    display: flex;
    /*align-items: center;*/
}
nav h1 {
    margin-top: 5em;
    margin-left: 1em;
    font-size: 1.2em;
}
.pc {
    flex: 1;
    margin-left: 1em;
    display: flex;
    justify-content: center;
}
#annuler {
    display: none;
    text-align: right;
}
.pc li {
    list-style-type: none;
    font-size: 1em;
    margin-top: 1em;
    margin-left: 0;
}
.pc li a {
    text-decoration: none;
    color: black;
}
.gsm {
    display: none;
    text-align: right;
}
section {
    flex: 4;
}

#TitreAlbum {
    text-align: center;
}


/*.ql-editor{ */
aside {
    text-align: justify;
    margin-left: 1em;
    margin-right: 1em;
}

.album {
    text-align: center;
}

.PeintureConteneur {
    display: flex;
}

.PeintureConteneur aside {
    flex: 1;
    order: 2;
}

.PeintureConteneur article {
    flex: 2;
    order: 1;
    margin: auto;
}

.monTableau td {
    width: 350px;
    text-align: center;
}

.album>img, #monTableau img {
    max-width: 300px;
    max-height: 300px;
    cursor: pointer;
}

#Diaporama {
    position: absolute;
    display: none;
    left: 0;
    top: 0;
    width: 100vw;
    min-height: 100vh;
    text-align: center;
    z-index: 2;
    background-color: white;
}

#Diaporama img {
    max-width: 90vw;
    max-height: 80vh;
}

#TitrePhoto {
    font-size: 1.2em;
    font-weight: bold;
}

#CaracteristiquePhoto {
    font-size: 1em;
}

#fleches {
    font-size: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flecheG {
    cursor: pointer;
    text-align: right;
}

.flecheD {
    cursor: pointer;
}

.droite {
    margin-left: 20em;
    text-align: right;
    font-size: 1em;
    cursor: pointer;
}

#pagination {
    width: 40px;
    text-align: center;
    font-size: 0.6em;
    font-weight: normal;
}

.texte {
    display: flex;
    justify-content: center;
    margin-top: 2em;
}

.texte div {
    width: 80%;
    text-align: justify;
}

#Message {
    width: 100%;
    height: 100px;
}

.LienTexte {
    margin-bottom: 5px;
    cursor: pointer;
}

.Ligne {
    display: flex;
    justify-content: space-between;
}

.Ligne div {
    margin-top: 10px;
    margin-bottom: 10px;
}


@media screen and (max-width: 992px) {
    .conteneur {
        display: block;
    }
    .pc {
        display: none;
    }
    nav h1 {
        margin-top: 1em;
    }
    #annuler {
        display: block;
    }
    .gsm {
        display: block;
    }
    .PeintureConteneur {
        display: block;
    }
    .PeintureConteneur aside {
        order:2;
    }
    .PeintureConteneur article {
        order:1;
    }
    .texte div {
        width: 100%;
    }
    .Ligne {
        display: block;
    }
}