* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: top center url("background.jpg");
    justify-content:center;
    color:#00457c;
}
section {
    width:50%;
    display:block;
    margin:0 auto;
}

.container {
    position: relative;
    height: 400px;
}

.centered-element {
    margin: 0;
    position: absolute;
    top: 50%;
}
.content-text, .content-image {
    display:block;
    float:left;
}
.content-text {
    width:60%;
}
h1, h4, p {
    margin-bottom:10px;
}

h1 {
    margin-top:30px;
    font-size:40px;
}
p{
    font-size:20px;
}
h4 {
    font-size:25px;
}
.logo {
    text-align:center;
    margin-bottom:50px;
}
.ubuntu-light {
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.ubuntu-regular {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.ubuntu-medium {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.ubuntu-bold {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.ubuntu-light-italic {
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.ubuntu-regular-italic {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.ubuntu-medium-italic {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.ubuntu-bold-italic {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-style: italic;
}
@media only screen and (max-width: 600px) {
    section {
        width: 90%;
    }

    .container {
        height: 120px;
    }

    .content-text {
        text-align: center;
        float: none;
        margin: auto;
        width: 90%;
    }

    h1 {
        font-size: 30px;
        margin-bottom: 25px;
    }

    p {line-height: 22px;margin-bottom: 25px;}

    h4 {
        font-size: 22px;
        font-weight: 500 !important;
        margin-top: 40px;
    }

    .content-image {
        float: none;
        text-align: center;
        margin-top: 20px;
    }

    .content-image img {
        width: 70%;
    }
}