html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.primary {
    color: #2bb24c;
}

.font-weight-medium {
    font-weight: 500;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand .logo {
    width: 30px;
    border-radius: 50%;
    margin-right: 8px;
}

a.primary:hover {
    color: #00811e;
}

.navbar-spacer {
    flex: 0 0 56px;
}

.container {
    padding: 0 64px;
}

.col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
}

.col.right {
    align-items: flex-end;
}

.col .button img {
    width: 152px;
}

.col .image {
    width: 384px;
}

@media (max-width: 992px) {
    .container {
        padding: 16px 32px;
    }

    .col {
        align-items: center !important;
        text-align: center;
    }

    .col .button img {
        width: 128px;
    }

    .col .image {
        width: 90% !important;
        max-width: 320px;
    }
}

footer {
    padding: 4px;
    text-align: center;
    font-size: 14px;
}

footer a {
    color: unset;
    text-decoration: underline;
}