/*Creating the Menu Bar*/
.customNavBar {
    width: 100vw;
    margin:0;
    padding: 0;
    overflow: hidden;
    background-color: transparent;
    transition: top 0.3s;
    top: 4%;
    color: white;
    
}

.navbar-brand {
    color: black;
}

.customNavBar li {
    font-family: "Quicksand", sans-serif;
    font-size: 1.1vw;
    color: whitesmoke !important;
    padding-left: 1vw;
    padding-right: 1vw;
}

.customNavBar li:hover {
    background-color: rgb(164, 98, 11);
    border-width: 1px;
    /* border-radius: 8px; */
    cursor: pointer;
    color: rgb(83, 19, 18);
}

.menuIcon {
    color:rgb(83, 19, 18);
    border: 2px solid rgb(83, 19, 18);
    border-radius: 5%;
    background-color: whitesmoke;
    padding: 2px;
    font-size: 2.3rem;
}

.customNavBar .show li{
    background-color: rgba(17, 17, 17, 0.95);
    border: 1px solid rgba(17, 17, 17, 0.95);
    font-size: 3.7vw;
    color: white;
}

.customNavBar .show li:hover{
    background-color: rgba(17, 17, 17, 0.95);
    border-width: 0px;
    border-radius: 0px;
    color: white;   
}

