div.header {
    background-color: rgb(84,5,5);
}
header {
    height: 59px;
}
ul.header {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(84,5,5);
}
li.header {
    float: left;
}
li.header-r {float:right}
li.header a, .header-r a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
li.header a:hover, .header-r:hover, .dropdown:hover .dropbtn {
    background-color: #111;
}
li.dropdown {
    display: inline-block;
    float: right;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(84,5,5);
    width: auto;
    box-shadow: 0px 8px 16px 0px black;
    z-index: 1;
}

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

.dropdown-content a:hover {
    background-color: #111;
    margin: 0px 0px;
}

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