body {
    margin: 0;
    font-family: sans-serif;
    font-weight: normal;
}
/* Layout et emplacement HTML */
html{
    background-image: url('../img/backgroung_about.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
main, .wrap{
    width: 650px;
    margin: auto;
}
header{
    font-family: 'Carter One', cursive;
    font-weight: lighter;
    font-size: 25px;
    background-color: black;
    color: white;
    width: 100%;
    padding: 5px 0px;
    text-align: center;
}
article{
    margin-top: 50px;
    height: 500px;
    background-color: rgba(255, 255, 255, 0.336);
    font-family: 'Carter One', cursive;
}
article#cv{
    padding-right: 100px;
}
article a:link{
    color: black;
}
article a:visited{
    color: black;
}
article a:hover{
    color: blue;
}
article.coming_soon p{
    padding-right: 300px;
}
article, img{
    height: 200px;
    width: auto;
    float: left;
    padding-right: 10px;
}
div.clear{
    clear: both;
}
footer{
    text-align: center;
    background-color: black;
    color: white;
}
h4{
    margin-bottom: 0px;
    padding: 3px;
}
@media (max-width: 700px) {
    main, .wrap{
        width: 100%;
        margin: auto;
        text-align: center;
    }
    header{
        font-size: 20px;
    }
    article{
        margin-top: 30px;
    }
    article, img{
        height: 150px;
        width: auto;
    }
    h2{
        font-size: 14px;
    }
    p{
        font-size: 12px;
    }
    article.coming_soon p{
        padding: 0;
    }
}