/*

Dark Red - #8A2026
Montco Red - #B72B34
Dark grey - #333333
Medium grey - #555555
Body - #CCC
White - #FBFBFB

*/

.navbar {
    overflow: visible;
    color: #FBFBFB;
    background-image: linear-gradient(#333333, #444444);
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

.navbar button {
    height: 100%;
}

.barItem {
    height: 100%;
    float: left;
}

.navItem {
    height: 100%;
    margin: 0;
    color: #FFF;
    background-color: rgba(255,255,255,0);
    border: none;
    padding: 0 15px;
    font-size: 25px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.navItem:hover {
    background-color: rgb(255,255,255,0.1);
}

.currNav {
    height: 100%;
    margin: 0;
    background-color: #CCC;
    color: black;
    border: none;
    padding: 0 15px;
    font-size: 25px;
    cursor: pointer;
}

.navLink {
    height: 100%;
}

.spacer {
    width: 10px;
}

#sitelogo {
    font-size: 30px;
}

.logo {
    font-size: 30px;
    font-weight: bold; 
    color: #FBFBFB; 
    background-color: #B72B34;
}

.logo_dev {
    font-size: 30px;
    font-weight: bold; 
    color: #FBFBFB; 
    background-color: #A00;
}

.logo_demo {
    font-size: 30px;
    font-weight: bold; 
    color: black; 
    background-color: #3CF;
}

.dropbtn {
    height: 100%;
    margin: 0;
    background-color: #B72B34;
    color: #FBFBFB;
    padding: 0 15px;
    font-size: 25px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.dropdown {
    height: 100%;
    overflow: visible;
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    color: #282C34;
    background-color: #CCC;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    z-index: 2;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #AAA;
    transition: background-color 0.2s;
}
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropbtn {background-color: #8A2026;}