body {
    height: 100vh;
    display: flex;
    flex-flow: column;
}

body > header {
    border: none;
}

#buttons-container {
    display: none;
}

main {
    display: flex;
    flex: 1;
}

main .container {
    display: flex;
}

main .container > div {
    flex: 1;
    max-width: 50%;
}

#left {
    align-items: baseline;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

#left > * {
    margin-bottom: 24px;
}

#left > *:last-child {
    margin-bottom: 0;
}

#left span {
    color: #56585b;
    font-family: 'Helvetica Neue';
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
}

#left span strong {
    color: #f00;
}

#left p {
    color: #000102;
    font-family: 'Helvetica Neue';
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    max-width: 575px;
}

#right {
    align-items: center;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

h1 {
    color: #000102;
    font-family: 'Geomanist';
    font-size: 32px;
    font-weight: 900;
    line-height: 36px;
}

#go-to-homepage {
    background: #102041;
    border-radius: 3px;
    color: #fff;
    font-family: 'Geomanist';
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 12px 35px;
    text-transform: uppercase;
}

footer {
    padding: 20px 0;
}

footer a,
footer a:hover {
    color: #102041;
}

footer a {
    font-family: 'Helvetica Neue';
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
}

footer a {
    margin-left: 32px;
}

footer a:first-of-type {
    margin-left: 0;
}

@media screen and (max-width: 992px) {
    #right {
        display: none;
    }

    #left {
        align-items: center;
        max-width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 450px) {
    footer .container {
        display: flex;
        flex-flow: column;
        align-items: center;
    }

    footer a {
        margin: 0;
    }
}
