/*Fonts*/

@import url('https://fonts.googleapis.com/css?family=Merriweather');
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab');
@import url('https://fonts.googleapis.com/css?family=Noto+Serif');

/*Article*/

article {
    z-index: 2;
}

#article-start {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 30%;
    width: 100%;
    background-color: #3f3f3f;
}

#article-title {
    position: relative;
    top: 25%;
    font-family: 'Noto Serif', serif;
    text-align: center;
    font-size: 34px;
    color: #fff;
    font-weight: 300;
}

#article {
    position: absolute;
    top: 300px;
    left: 0px;
    height: 100%;
}

#img_middle {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    position: relative;
    top: 50px;
}

#article-about {
    position: relative;
    top: 100px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6667;
    padding: 5px 5px 5px 5px;
    z-index: 4;
	margin-bottom: 200px;
}

@media (max-width: 1200px) {
    #article{
        top: 450px;
    }
    footer{
        top: 1400px;
    }
}

@media (max-width: 800px) {
    #article-about {
        width: 85%;
    }
    #article-start{
        height: 35%;
    }
    #article{
        top: 400px;
    }
    footer{
        top: 1700px;
        height: 140px;
    }
}
@media (max-width: 450px) {
    #article-about {
        width: 90%;
    }
    #article-start{
        height: 60%;
    }
    #article{
        top: 510px;
    }
}