html,
body {
    height: 100%;
}

body {
    /* font-family: 'Roboto Slab', serif; */
    font-family: 'Montserrat',
        sans-serif;
}

.main {
    background-color: white;
    background-image: url('/images/hero-images/hero-003.jpg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: calc(100% - 64px);
}

/* Navbar */
a.nav-link {
    /* color: black; */
    color: white;
    display: block;
}

a.nav-link:hover,
a.nav-link:active {
    color: #ffc107 !important;
}

.active {
    color: #ffc107 !important;
}

.dropdown-menu {
    background-color: black;
    color: white;
}

.dropdown-item {
    color: white;
}

.navbar-background {
    background-color: black;
}

a.dropdown-item.active {
    background: inherit;
}



/* Home page */

.visitor-counter {
    font-family: 'Orbitron', sans-serif;
    border: 2px solid black;
    border-radius: 10%;
    padding-left: 5px;
    padding-right: 5px;
}

.banner {
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%
}

.play-game-btn:hover,
.play-game-btn:active {
    color: #198754 !important;
    /* border-color: #DC3545 !important; */
}


/* FAQ page */
/* .heading {
    color: #106b40;
} */


/* Game page */
.sidebar-btn {
    position: fixed;
    right: 0px;
    z-index: 1;
}

.sidebar {
    height: 100%;
    width: 200px;
    background-color: #fff;
    position: fixed !important;
    z-index: 1;
    overflow: auto;
    top: 100px;
    border-radius: 10px;
    padding: 10px;
}

.sidebar-animate-right {
    position: relative;
    animation: animateright 0.4s;
}

#admin_code {
    background-color: lightgrey;
}

/* Medium screen devices (768px and above) */
@media only screen and (max-width: 821px) {

    .main {
        background-image: url('/images/hero-images/hero-004.jpg');
    }
}


/* Comments Page */
.comment-container {
    border: 1px solid grey;
    border-radius: 5px;
    padding: 5px;
}

.comment-vote-container {
    width: 32px;
}

.comment-vote-button {
    width: 32px;
}

.comment-vote-button:active {
    background-color: grey;
}

.userUpVote {
    background-color: green;
}

.userDownVote {
    background-color: red;
}

.resource-vote-count-span {
    display: table;
    margin: 0 auto;
}