/*Background Colors*/
.bgRed {
    background-color: #EF1D26;
    height: 80px;
    font-size: large;
    font-weight: 500;
}

/*Menu Bar*/
#menuBar {
    color: #ffffff;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.navbar-brand {
    color: rgba(255, 255, 255, 0.9);
    font-size: xx-large;
}

#footer {
    background-color: #6e6e6e
}

#footer-div-1,
#footer-div-2 {
    border-right: 1px solid white;
}

#footer-div-1 a {
    color: white;
    font-size: larger;
}

#footer-div-2 a {
    color: white;
    text-decoration: none;
}

#footer-div-2 {
    display: flex;
    justify-content: center;
}

#footer-div-2 ul {
    list-style-type: none;
    font-size: larger;
}

#footer-div-3 div:nth-child(1) {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15%;
    color: white;
}

#footer-div-3 div:nth-child(1) button {
    font-size: larger;
    width: 75%;
}

#footer-div-3 div:nth-child(2) {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

#footer-div-3 div:nth-child(2) a {
    color: white;
    text-decoration: none;
    margin: 5px;
}

/*CSS for Mobile*/

@media only screen and (max-width: 600px) {
    #footer-div-1,
#footer-div-2 {
    border-right: 0px solid white;
}
}