.foot {
    text-align: center;
    font-family: monospace;
}
body {
    background-color: beige;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: -webkit-sticky; /*safari*/
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
}
li {
    float: left;
    border-right: 1px solid #bbb;
}
li:last-child {
    border-right: none;
}
li a, .morebtn{
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
li a:hover:not(.active) {
    background-color: rgb(104, 91, 91);
}
li a.active {
    background-color: #04AA6D;
}
/* li.more {
    display: inline-block;
}
.more-content {
    display: none;
    position: absolute;
    background-color: #351616;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
} */
