/* ul */
ul.dropmenu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #0B3B24;
    color: #FFFFFF;
    text-align: center;
}

/* li */
li.dropbtn {
    float: left;
}

a.dropbtn, li.dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
}

.dropdown a:hover, li.dropdown:hover li.dropbtn {
    background-color: #0B5B24;
    text-decoration: underline;
    color: white
}

li.dropdown {
    display: inline-block;
}

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

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

.dropdown-content a:hover {
   background-color: #0B5B24
   text-decoration: underline;
   color: white;
}

.show {display:block;}
