html {
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    flex: 1;
}
nav, footer {
    flex: 0;
}
main {
    flex: 1;
    padding-top: 65px;
}

nav {
    background-image: url("../images/steeves_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    border-bottom: 1px solid #DFE3E6;
    padding: 12px 0;
}

nav img {
    height: 100px;
}

main .disclosure-row,
main .text-column {
    margin-bottom: 48px;
}

main .disclosure-text {
    margin-bottom: 12px;
    margin-left: 12px;
}

main h2 {
    margin-top: 0
}

footer {
    background: #F1F3F5;
    padding: 16px 0;
    font-size: 12px;
    color: #889096;
    margin-top: 48px;
}
footer p {
    margin-bottom: 0;
}
footer .row + .row {
    margin-top: 4px;
}