#navbar {
    display: flex;
    width: 100%;
    z-index: 10;
    overflow-x: hidden;
    position: fixed;
    justify-content: flex-end;
}

#backdrop {
    position: absolute;
    top: -55px;
    left: 0;
    width: 100%;
    height: 55px;
    background: black;
    opacity: .3;
    transition-duration: 1s;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#navhome,
#navprofile,
#navprojects,
#navresume,
#navcontact {
    float: left;
    font-family: Arial, Verdana, sans-serif;
    font-size: 16px;
    padding: 10px;
    justify-content: space-evenly;
    opacity: 0;
    cursor: pointer;
}

.navel  {
    display: inline-block;
    text-align: center;
    padding: 8px;
    color: #bfc0c0;
    font-weight: none;
    text-decoration: none;
}

.navel:after {
    content: '';
    width: 0px;
    height: 1px;
    display: block;
    background: white;
    transition-duration: 300ms;
}

.navel:visited {
    color: #bfc0c0;
    font-weight: bold;
}

.navel:hover {
    color: white;
}

.navel:hover:after {
    width: 100%;
}