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: #fff;
    border-bottom: 1px solid #DFE3E6;
    padding: 0;
    top: 0;
    left: 0;
    z-index: 1000;
}

nav a {
    text-decoration: none;
    font-size: 14px;
    color: #C1C8CD;
}

nav a:hover,
nav a:active,
nav a:visited {
    text-decoration: none;
    color: #C1C8CD;
}

nav .catch-phrase {
    margin: 16px 0 -16px;
    position: relative;
    z-index: 100;
}
nav img {
    height: 80px;
    padding-left: 80px;
    margin-bottom: 16px;
}

main .disclosure-row {
    margin-top: 48px;
    color: #889096;
    margin-bottom: 24px;
}

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;
}