html, body {
    height: 100%;
    width: 100%;

    max-height: 100%;
    max-width: 100%;
}

a {
    text-decoration: none;
}

.bg {
    background: url('/images/light-forest-up.jpg') no-repeat center center fixed;

    /* Center and scale the image nicely */
    background-size: cover;
}

#side-bar {
    background: rgb(57, 58, 57);
    display: none;
}

.navbar {
    display: inline;
    background: rgb(57, 58, 57);

    font-size: 30px;
    font-family: 'Amatic SC', Times, sans-serif;
    letter-spacing: 2px;
}

.nav-item {
    font-size: 20px;
    font-family: 'Amatic SC', Times, sans-serif;
    letter-spacing: 2px;
    color: white !important;
}

.navbar .dropdown-menu a {
    color: white !important;
    font-size: 20px;
}

.navbar-logo {
    width: 40px;
    height: 40px;
}

#nav-logo {
    max-width: 100%;
    height: auto;
}

#main-container {
    margin-right: 0 !important;
}

.dropdown-menu {
    background: rgba(30, 30, 30, 0.93);
}

#main-content {
    /*width: 85%;*/
}

#main-content-center {
    background: rgba(37, 38, 37, 0.92);
    border-radius: 18px;
    overflow-y: auto;
    overflow-x: hidden;

    font-size: 18px;
    font-family: 'Life Savers', Times, sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
}

#main-content-message {
    font-size: 22px;
    font-family: 'Amatic SC', Times, sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
}

#main-content-message > p{
    font-size: 18px;
    font-family: 'Life Savers', Times, sans-serif;
    letter-spacing: 2px;
}

#main-content-message > h5 {
    font-size: 30px !important;
    font-family: 'Life Savers', Times, sans-serif;
    letter-spacing: 2px;
    font-weight: bolder;
}

p {
    margin-bottom: 0;
}

#successMessage, #failMessage
{
    font-size: 20px;
    font-family: 'Life Savers', Times, sans-serif;
    letter-spacing: 2px;
    font-weight: 900 !important;
}

/* Let's get this party started */
::-webkit-scrollbar {
    width: 12px;
    height: 90%;
    margin-bottom: 10px;
    margin-right: 10px;
    margin-top: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
    height: 90%;
}

/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(145, 151, 145, 0.8);
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(105, 106, 104, 0.4);
}

.underline {
    border: white solid 1px
}

.event-underline {
    border: white solid 1px
}

/*Medium breakpoint*/
@media (min-width: 768px) {
    #side-bar {
        display: inline !important;
    }

    .navbar {
        display: none !important;
    }
}