/* ---------------- *\
        GENERAL
\* ---------------- */
* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #111;
    background-image: url(../medias/logo.svg);
    background-position: center center;
    background-attachment: fixed;
    background-size: 120px;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    color: #DDD;
    height: 100%;
}

h1, h2, h3 {
    font-family: 'Dosis', sans-serif;
    font-weight: 200;
    color: #DDD;
    letter-spacing: 8px;
}

p {
    letter-spacing: 2px;
    font-size: 0.9em;
}

li a {
    font-weight: bolder;
    line-height: 25px;
    color: #DDD;
}

a {
    text-transform: uppercase;
    color: #d6e7ff;
    text-decoration: none;
}

a:active, a:hover {
    color: #176ebc;
}

.clear {
    clear: both;
}

hr {
    margin-bottom: 100px;
    width: 100%;
    border: none;
    height: 1px;
    background: #DDD;
}

/* ---------------- *\
        HEADER
\* ---------------- */

header {
    position: fixed;
    height: 80px;
    width: 100%;
    background: rgba(17, 17, 17, 0.92);
}

header h1 {
    float: left;
    line-height: 80px;
    text-align: center;
    padding-left: 25px;
    width: 275px;
}

header h1 a:hover {
    color: #176ebc;
}

        /* ---_MENU_--- */

#menu_icone {
    float: right;
    display: none;
    width: 150px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 15px;
    border: 1px solid #ddd;
    font-size: 1.2em;
}

/* ---------------- *\
     FOOTER
\* ---------------- */

footer {
    margin-top: 100px;
    height: 40px;
    line-height: 40px;
    background: rgba(17, 17, 17, 0.92);
    text-align: center;
}

footer a {
    text-transform: none;
}

/* ---------------- *\
     PAGE A PROPOS
\* ---------------- */

#aProposContent {
    width: 960px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 200px 8px 0px 8px;
}

#aProposContent a {
    text-transform: none;
    color: #d6e7ff;
}

#aProposContent h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

article > p {
    text-align: left;
    color: #ddd;
    margin-bottom: 5px;
    margin-top: 5px;
    line-height: 25px;
}

article img {
    width: 40%;
    margin-bottom: 15px;
    animation: _rotate 10s linear infinite;
}

@-webkit-keyframes _rotate {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
} 

        /* ---_RESPONSIVE_TABLETTE_--- */

@media only screen and (max-width: 960px) {
    .responsive_bar {
        margin: auto;
        width: 30%;
    }
    
    header {
        position: fixed;
        height: 150px;
    }
    
    nav {
        width: 100%;
    }
    
    #aProposContent {
        width: auto;
        padding-top: 150px;
    }
    
    article > p {
        margin-bottom: 75px;
    }
    
        /* ---_RESPONSIVE_MOBILE_--- */

@media only screen and (max-width: 602px) {
    
    article > p {
        margin-bottom: 70px;
    }
    
}