.navbar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999;
	width: 100%; 
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F98700cc;
    color: #2b2c2dff;
    transition: 300ms;
}

.navbar > .brand {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.8em;
    text-transform: uppercase;
    padding: 0 1em;
}

.navbar > .brand:visited {
    color: inherit;
}

.navbar > .nav {
    display: flex;
    align-items: center;
}

.navbar > .nav > .nav-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: ease-in-out 100ms; 
    font-size: 1.3em;
    font-weight: 400;
    color: inherit;
    padding: .7em 1em;
}

.navbar > .nav > .nav-link:hover {
    color: #2b2c2dff;
}


.navbar > .nav > .nav-link:hover {
    background-color: #F98700cc;
}

.navbar > .nav > .nav-link:visited {
    color: inherit;
}