/* Ensure the page body fills the screen height */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Force the site wrapper to be at least the height of the screen */
#page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Push the footer to the bottom of the flex container */
.site-footer {
    margin-top: auto;
}

a.button:hover,
a:visited,
a:focus {
    color: white;
}

.site-branding .site-logo {
    color: black;
}