* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font: 16px 'Open Sans', arial, sans-serif;
    color: #666;
    margin: 0;
    padding: 0 0 0 0;
    min-height: 100%;
}

.hero {
    overflow: hidden;
    font-size: 4vmin;
    background-image: url('../assets/background.png');
    background-repeat: no-repeat;
    background-size: cover;
    line-height: auto;
}

.hero,
.hero .outer {
    height: 100%;
}

.outer {
    background-image: url('../assets/bg_elements.png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center bottom;
    width: 100%;
}

.hero__lfalogo,
.hero__lflogo {
    display: block;
    max-width: 100%;
    margin: auto;
}

.hero__lflogo {
    z-index: 3;
}

.hero__lflogo {
    width: 100%;
    max-width: 100px;
    padding: 10px 0;
}

.container {
    padding: 10px;
    display: flex;
    align-items: safe center;
    justify-content: space-evenly;
    flex-direction: column;
    height: 100%;
    top: 50%;
}

.push {
    margin-left: auto;
}

.item {
    padding: 20px;
}

@media only screen and (max-width: 600px) {
    .outer {
        background-size: 644px;
    }

    .item {
        padding: 5px;
    }

    .hero__lflogo {
        width: 65px;
    }

    .hero__lfalogo {
        width: 90px;
    }
}

@media only screen and (min-width: 600px) {
    .outer {
        background-size: 964px;
    }

    .hero__lflogo {
        width: 65px;
    }

    .hero__lfalogo {
        width: 90px;
    }
}

@media only screen and (min-width: 768px) {
    .container p {
        padding: 0 120px !important;
    }
}

@media only screen and (min-width: 960px) {
    .hero {
        font-size: 3vmin;
    }

    .outer {
        background-size: 1920px;
    }

    .container p {
        padding: 0 220px !important;
    }
}