
body {
    width: 100vw;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    background-image: url('../images/home-hero-3.jpg');
    background-position: center;
    background-size: cover;
    margin: 0;
    padding: 0;
}

header {
    height: 92px;
    background-color: #094349;
    padding: 25px;
    box-sizing: border-box;
}

main {
    position: relative;
    height: calc(100vh - 172px);
    min-height: 590px;
    text-align: center;
    width: 100%;
}

.text {
    position: absolute;
    top: 10%;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 18px;
}

h2 {
    display: block;
    font-size: 28px;
    text-decoration: underline;
    padding: 0 5px;
    //border-right: 2px solid #fff;
    margin-right: 5px;
}

h2:last-child {border-right: none}

span {
    font-size: 22px;
}

.button {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    font-size: 18px;
    background-color: #e51242;
    text-align: center;
    width: 260px;
    padding: 20px 0;
    border-radius: 15px;
}

footer {
    color: #000;
    height: 80px;
    text-align: center;
    background: #eee;
    padding: 25px;
    box-sizing: border-box;
}

footer p {margin:0}

@media only screen and (min-width:530px) {
    h2 {display:inline}
}

@media only screen and (min-width:768px) {
    h1 {font-size: 58px}
    .text {top: 25%}
    .button {bottom: 20%}
}