*, *:before, *:after {
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
    height: 100%;
}

body {
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #1F2556 url(img/bg.svg) center top 120px no-repeat;
    background-size: 100%;
    font-family: "sofia-pro-soft", sans-serif;;
}

main {
    position: relative;
    z-index: 1;
}

h1 {
    margin: 0;
}

h2 {
    color: #FFF;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 5rem 0 2rem;
}

main > a {
    display: inline-block;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    border-radius: 35px;
    background: #00AFAC;
    text-decoration: none;
    padding: 8px 28px 12px 28px;
}

.o-svg__bg {
    position: absolute;
    bottom: 10%;
    right: 10%;
}

footer {
    margin-top: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

footer a {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #FFFFFF;
    text-decoration: none;
}

footer a svg {
    margin-left: .5rem
}

@media (max-width: 768px) {

    body {
        padding: 0 15px;
    }

    img {
        max-width: 100%;
    }

    h2 {
        font-size: 28px;
    }

    main > a {
        font-size: 16px;
    }
}