img {
    position: absolute;
    width: 20%;
    height: auto;
    top: 25px;
    left: 25px;
}

header{
    margin-bottom: 70px;
}

section{
    width: 60%;
    margin-left: 20%;
}

article{
    margin-bottom: 50px;
    overflow: auto;
}

h1{
    text-align: center;
    text-transform: uppercase;
    font-family: "Open Sans Bold";
    color: rgb(0, 125, 143);
    font-size: 2.5em;
    margin-top: 140px;
}

h2{
    font-family: "Open Sans Bold";
    color: rgb(0, 125, 143);
}

p, ul, a{
    font-family: "Open Sans";
    font-size: 17px;
    font-weight: 400;
}

@font-face {
    font-family: "Open Sans";
    src: url("../FONTS/OpenSans/OpenSans-Regular.ttf");
}

@font-face {
    font-family: "Open Sans Bold";
    src: url("../FONTS/OpenSans/OpenSans-Bold.ttf");
}

@media screen and (max-width: 1000px) {
    img {
        width: 25%;
    }
}

@media screen and (max-width: 800px) {
    img {
        width: 40%;
        left: 30%;
    }
    h1{
        margin-top: 140px;
        padding-left: 0;
    }
    section{
        width: 80%;
        margin-left: 10%;
    }
}

@media screen and (max-width: 600px) {
    img {
        width: 50%;
        left: 25%;
    }
    h1{
        margin-top: 140px;
    }
    section{
        width: 90%;
        margin-left: 5%;
    }
}