@import url('https://fonts.googleapis.com/css2?family=Boldonse&family=Kedebideri:wght@400;500;600;700;800;900&display=swap');
html {
    height: 100%;
}
body {
    font-family: 'Kedebideri', 'Century Gothic', Helvetica, Arial, sans-serif;
    height: auto;
    background: #eee;
    color: #000;
}
a {}
a:hover {}
p, ul li, ol li {
    font-size: 0.83vw;
}
h1, h2, h3, h4, h5 {
    font-family: 'Boldonse', 'Century Gothic', Helvetica, Arial, sans-serif;
    color: #356800;
}
.navFix {
    box-shadow: 0 0px 6px -2px rgba(0, 0, 0, 0.6705882352941176);
}
.navbar {
    height: auto;
    background: #000;
    border-bottom: 15px solid #e9d78b;
}
.navbar-brand {
    margin: 5px 0;
    text-transform: uppercase;
    color: #fff;
}
.navbar-brand img {
    max-height: 75px;
}
.navbar a {
    color: #fff;
}
.navbar ul li {
    margin: 5px 15px;
}
.navbar ul li a {
    padding: 5px 15px;
    border-radius: 3px;
}
.navbar ul li a:active, .navbar ul li a:visited {
    color: #fff;
}
.navbar ul li a:hover {
    background: #356800;
    color: #e9d78b;
}
.navbar .fas {
    color: #fff;
}
.btn {
    border-radius: 5px;
    padding: 5.5px 20px;
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    position: relative;
    display: inline-block;
}
.btn:not(.btn-danger):not(.btn-primary) {
    background: #e9d78b;
    color: #000;
}
.btn:hover:not(.btn-danger):not(.btn-primary) {
    background: #356800;
    color: #e9d78b;
}
.btn-file {
    position: relative;
    overflow: hidden;
    border-radius: 3px 0 0 3px;
    box-shadow: none;
    font: inherit;
}
.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    min-width: 100%;
    min-height: 100%;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: black;
    cursor: inherit;
}
.btn:not(.btn-file):active {
    -webkit-transform: translate(0px, 5px);
    transform: translate(0px, 5px);
    box-shadow: 0px 1px 0px 0px;
}
.alert {
    margin: 0 auto 15px auto;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .20);
    z-index: 10;
}
.cursor {
    cursor: pointer;
}
.blurb {
    margin: auto;
    max-width: 1100px;
    font-size: 1.4vw;
    text-align: center;
    color: #fff;
}
.box {
    background: #fdfdfd;
    border: 1px solid #e1e1e1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
    border-radius: 5px;
}
.help {
    position: fixed;
    right: 0;
    top: 50%;
    width: auto;
    height: auto;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #111;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
    font: bold 1rem 'Century Gothic', Helvetica, Arial, sans-serif;
    writing-mode: sideways-lr;
    text-orientation: mixed;
    text-align: center;
    text-decoration: none;
    color: #e9d78b;
    z-index: 10;
}
.help:hover {
    background: #356800;
    color: #e9d78b;
}
.spacer {
    height: 90px;
    margin-bottom: 15px;
}
#banner {
    height: auto;
    min-height: 60vh;
    background-image: url(images/background.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-attachment: fixed;
    background-size: cover;
}
#main {
    height: auto;
    min-height: 30vh;
    position: relative;
}
#bottom {
    position: relative;
    display: block;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.30);
    color: #fff;
}
#bottom::after {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    content: "";
    background-color: #222;
    z-index: -1;
}
#footer {
    position: relative;
    display: block;
    padding: 15px 0;
    background: #2f2f2f;
    color: #222;
}
#footer .bottom {
    background: #444;
    color: #fff;
}
@media (max-width: 1024px) {
    h1, h2, h3, h4, h5 {
        font-size: 3vw;
    }
    #footer, .blurb {
        font-size: 2vw;
    }
    p, ul li, ol li, td, body {
        font-size: 1.5vw;
    }
}
@media (max-width: 640px) {
    h1, h2, h3, h4, h5 {
        font-size: 4.8vw;
    }
    #footer, .blurb {
        font-size: 4vw;
    }
    p, ul li, ol li, td, body {
        font-size: 4.4vw;
    }
}