body {
    width: 100vw;
    height: 100vh;
    background: #246fa8;
    background: radial-gradient(circle, #57c1eb 0%, #246fa8 100%);
    margin: 0;
    font-family: 'Lato', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}
main {
    background: #fff;
    max-width: 1000px;
    width: 1000px;
    margin: 0 20px;
    padding: 40px;
    position: relative;
    box-shadow: #0f3154 0 0 50px;
}
h1 {
    float: left;
    padding-bottom: 25px;
    margin: 0;
}
img {
    width: 340px;
    height: 95px;
}
section {
    width: 50%;
    float: right;
    font-size: 25px;
}
h2 {
    font-size: 25px;
    font-weight: normal;
    margin: 0;
}
p {
    font-size: 15px;
    margin-top: 0;
}
button, a {
    background: #3279b9;
    color: #fff;
    border: none;
    padding: 10px 0;
    display: inline-block;
    width: 100%;
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    margin-top: 25px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}
button:hover, a:hover {
    background: #265f92;
}
footer {
    font-size: 20px;
    font-style: italic;
    color: #21232d;
    position: absolute;
    bottom: 40px;
    left: 40px;
    padding-top: 20px;
}
@media only screen and (max-width: 1080px) {
    main {
        width: auto;
    }
}
@media only screen and (max-width: 850px) {
    body {
        display: block;
        margin: 25px auto;
        height: auto;
        min-width: 300px;
    }
    main {
        margin: 0 auto;
        max-width: 400px;
        padding: 30px;
        box-shadow: #0f3154 0 0 20px;
    }
    img {
        width: 260px;
        height: 72px;
    }
    section {
        width: auto;
        float: none;
        clear: left;
    }
    footer {
        position: static;
        text-align: center;
        font-size: 18px;
    }
}
@media only screen and (max-width: 470px) {
    main {
        padding: 20px;
        margin: 0 15px;
    }
    img {
        width: 200px;
        height: 55px;
    }
}