html, body {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 2vh;
    margin: 0;
    padding: 0;
}

#container {
    align-content: stretch;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: fixed;
    width: 100%;
}

header {}

main {
    flex-grow: 1;
}

footer {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

footer span {
    margin: 0 1em;
}

nav {
    display: flex;
    align-content: center;
    justify-content: center;
}

nav ul,
nav ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

nav ul li {
    margin: 0 .25em;
}

nav ul li a {
    font-size: 16pt;
    font-weight: 700;
}

nav ul li a:hover {
    cursor: pointer;
}

.btn-primary {
    background-color: #1d539b;
    border-color: #1d539b;
}

.btn-primary:hover {
    background-color: #a0ce4e;
    border-color: #a0ce4e;
    cursor: pointer;
}
