/*  Auteur :        Steffen Jonathan
    Date :          13.01.2022
    Description :   Page css pour contenu identique*/

* {
    font-family: Arial, Helvetica, sans-serif;
}

#background {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1;
    display: block;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
    height: 100%;
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}

#contenu {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 9999;
}

.imageTitre {
    max-height: 200px;
}

header {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 2%;
}

h1 {
    color: #008DD2;
    text-align: center;
    font-size: 5em;
    margin-top: auto;
}

.conteneurNav {
    width: 75%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

nav {
    text-align: center;
    display: flex;
    flex-direction: row;
    padding-bottom: 3em;
    font-size: 1.5em;
    vertical-align: middle;
}

nav>a {
    background-color: #f6172e;
    font-weight: bold;
    padding: 1em;
    width: 100%;
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav>a:hover {
    background-color: #FDC000;
}

.accueilSource {
    display: none;
}

.menuActif {
    color: white;
}

@media all and (max-width: 1400px) {
    .conteneurNav {
        width: 50%;
    }
    nav{
        display: block;
    }
    
    p {
        margin-left: auto;
        margin-right: auto;
        padding: 2%;
    }

    header>a {
        display: none;
    }

    .accueilSource {
        display: block;
    }

    .texteImage, .imageTexte {
        display: block;
        text-align: center;
    }

    h1, h2 {
        margin-left: auto;
        margin-right: auto;
    }

    #contenuAccueil {
        display: block;
        text-align: center;
    }

    img {
        padding: 2%;
    }
}