html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    overflow: auto;
}

#container {
    align-self: stretch;
    min-height: 100%;
    min-width: 100%;
    display: flex;
}

#top-bar {
    flex: 1 1 auto;
    background-color: #000000;
    align-items: stretch;
    margin: 0;
}

.bar-item {
    display: inline-block;
    padding: 0.7em;
    font-size: 1.5em;
    color: #ffffff !important;
    background-color: #000000;

    transition-duration: 0.2s;
    transition-property: color, background-color, text-decoration;
}

.bar-item:hover {
    color: #000000 !important;
    background-color: #ffffff;
}

.bar-item:hover.active {
    text-decoration: underline solid #000000;
}

.bar-link, .bar-link:visited {
    font-family: "Josefin Sans", sans-serif;
    text-decoration: none;
}

.active {
    text-decoration: underline solid #ffffff;
}

#logo-wrapper {
    align-content: center;
}

#logo {
    display: block;
    margin: 0 auto;
    height: 50%;
    width: 50%;
}

#content {
    flex: 1 1 auto;
}

#banner {
    margin: auto;
    text-align: center;
    font-family: "Josefin Sans", sans-serif;
    font-size: 10em;
}