body {
    display: flex;
    flex-direction: column;
    border: 0;
    margin: 0;
    background-color: white;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.site-header {
    display: flex;
    flex-direction: row;
    flex: initial;
    background-color: black;
    padding: 1em;
    border-bottom: solid 0.33em silver;
    color: white;
}
.site-content {
    display: block;
    flex-direction: row;
    flex: auto;
    overflow:auto;
}
.site-footer {
    display: flex;
    flex-direction: row;
    flex: initial;
    background-color: #eee;
    border-top: solid 1px silver;
    padding: 0.5em;
}
.fl-align-stretch {
    align-items: stretch;
}
.fl-justify-center {
    justify-content: center;
}
.fl-auto {
    flex: auto;
}
.fl-initial {
    flex: initial;
}
.align-left {
    text-align: left;
}
.align-center {
    text-align: center;
}
.align-right {
    text-align: right;
}
.valign-top {
    vertical-align: top;
}
.valign-middle {
    vertical-align: middle;
}
.valign-bottom {
    vertical-align: bottom;
}
.site-logo {
    background-image: url('/svg/logos/base-logo-trans.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 5em;
    height: 5em;
    background-color: black;
}
.site-banner {
    /* background-image: url('/svg/banners/base-banner-vectorized.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 30em;
    height: 3.6em; */
    background-color: black;
}
