/*
CSS pour les écran de moins de 1100px de large
version 1.8
06.02.2022
Simon Gendre
*/

.backgroundImg {
    background-image: url('../images/IMG_20210811234513.jpg');
}

.contenu {
    text-align: justify;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 10px;
}

/*Menu de navigation*/

header {
    
    flex-direction: column;
    background-color: rgba(255, 0, 0, 0);
}

.imageEntete {
    height: 5em;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #720000;
    border-radius: 10px;
}

img.logoSite {

    height: 3em;
    width: 3em;
    margin: 1em;
}

img.boutonMenu {
    display: block;
    border-radius: 100px;
    margin: 1em;
    height: 3em;
    width: 3em;
}

header:hover .menuNavigation {
    display: block;
    background-color: #720000;
    border-radius: 10px;
    transition: all 2s;
    position: fixed;

    display: flex;
    flex-direction: column;
    margin-top: auto;
    margin-bottom: auto;
    height: fit-content;
    width: fit-content;
    font-size: 0.5em;
}

.menuNavigation {
    display: none;
    transition: all 2s;
}

.separateurMenu {
    display: none;
}

.menuNavigation>p {
    font-size: 3em;
    margin-top: 0.5em;
}

/* contenu de la page*/

.messageBienvenue {
    margin-top: 0.75em;
    font-size: 1em;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.sousTitre {

    margin-top: 2em;
    text-align: center;
    font-size: 0.75em;
}

.texte {
    display: flex;
    flex-direction: column;
    font-size: 0.75em;
    margin-top: 1.5em;
    margin: 0.5em;
}

.texteGauche {
    width: 100%;
}

.texteDroite {
    width: 100%;
}

.imageLegende {
    font-size: 1em;
    width: 100%;
    margin: 0.1em;
    padding: 0.1em;
}

.imageLegende>img,
.imageLegende>video, .imageLegende>iframe {
    width: 90%;
    height: auto;
    
}
.imageLegende>iframe{
    height: 9em;
    
}
.imageLegende>p {
    font-size: 1em;
    text-align: center;
    margin: 0.1em;
}

.conteneur {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: auto;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 1.75em;
}