html {
    height: 100%;
}
body {
    height: auto;
    background: #000;
    color: #fff;
}
a {
    color: #000;
}
a:hover {}
p, ul li, ol li {
    font-size: 0.83vw;
}
h1, h2, h3, h4, h5 {}
.navFix {
    box-shadow: 0 0px 6px -2px rgba(0, 0, 0, 0.6705882352941176);
}
.navbar {
    background: #171717;
    height: auto;
}
.navbar-brand {
    margin: 5px 0;
    text-transform: uppercase;
    color: #fff;
}
.navbar-brand img {
    max-height: 19px;
}
.navbar a {
    color: #fff;
}
.navbar ul li a {}
.navbar ul li a:active {}
.navbar ul li a:hover {}
.navbar .fas {
    color: #fff;
}
.btn {
    background: #171717;
    border: 2px solid #ddd;
    border-radius: 0;
    padding: 5.5px 20px;
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    position: relative;
    display: inline-block;
}
.btn:not(.btn-danger):not(.btn-primary) {}
.btn:hover:not(.btn-danger):not(.btn-primary) {
    background: #fff;
    color: #000;
}
.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;
}
.box {
    max-width: 640px;
    background: #171717;
    border: 1px solid #ddd;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
}
.spacer {
    height: 170px;
    margin-bottom: 15px;
}
.pagination .active > .page-link {
    background-color: #171717 !important;
    border: 1px solid #000 !important;
}
#main {
    position: relative;
    min-height: 87vh;
}
#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: 640px) {
    h1, h2, h3, h4, h5 {
        font-size: 6vw;
    }
    p, ul li, ol li {
        font-size: 4vw;
    }
}