.container-fluid {
    background-image: linear-gradient(to right, black, rgb(187, 0, 0));
}

/*
Link stylings are global, change so that it only effects the navbar
*/

.active a {
    background-color: grey !important;
}

.navbar a:hover {
    background-color: grey !important;
    color: black !important;
}

.navbar a {
    color: white !important;
}

.dropdown-menu {
    background-color: red !important;
}

.drop-down a {
    background-color: grey !important;
}

.navbar-brand img {
    position: relative;
    top: -10px;
} 


/* html {
    margin: 0px;
}

nav {
    width: 100%;
    height: 50px;
    //background-color: #008f95; 
    background-color: rgb(48, 47, 47);
    background-image: linear-gradient(to right, black, rgb(187, 0, 0));
}

nav a {
    display: block;
    float: left;
    font-family: sans-serif;
    font-size: 12px;
    color: white;
    padding-top: 20px;
    padding-right: 10px;
    padding-bottom: 15px;
    padding-left: 10px;
    text-decoration: none;
}

nav a:hover {
    transition: 0.5s;
    //background-color: #e24e42;
    background-color: dimgray;
    color: white;
}

#logo {
    font-family: 'Hind', sans-serif;
    font-size: 30px;
    letter-spacing: -1px;
    text-shadow: 1px 1px 2px #c4c4c4;
    padding-left: 10px;
    margin-right: 10px;
    padding-bottom: 5px;
    padding-top: 10px;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    display: block;
    border: none;
    //Remove this line to test borders
    outline: none;
    font-family: sans-serif;
    font-size: 12px;
    background-color: inherit;
    padding-top: 20px;
    padding-right: 10px;
    padding-bottom: 15px;
    padding-left: 10px;
    margin: 0;
    color: white;
}

.navbar a:hover,
.dropdown:hover .dropbtn {
    transition: 0.5s;
    background-color: dimgray;
    color: white;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(48, 47, 47);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    transition: 0.5s;
    background-color: dimgray;
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
} */