.navbar {
	width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 150;
    text-align: center;
}

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

.navbar ul li {
	border: 0.15vw solid white;
    background-color: black;
    justify-content: center;
    align-items: center;
    border-radius: 1.5vh;
    display: inline-block;
	padding: 2vh;
	transition: 0.5s;
    margin: 0.75vh;
    text-align: center;
    font-size: 1vw;
}

.navbar ul li a {
	text-decoration: none;
	color: white;
	font-weight: bold;
    transition: 0.5s;
}

.navbar ul li:hover {
	background: white;
}

.navbar ul li.hoverable {
    cursor: pointer;
}

.navbar ul li.hoverable:hover {
    transform: rotate(5deg);
}

.navbar ul li:hover a {
	color: black;
}

.navbar ul li.active {
	background: white;
    transform: scale(0.8);
    cursor: default;
}

.navbar ul li.active a {
	color: black;
}

#navbar-settings {
    position: fixed;
    right: 16px;
    top: 16px;
    padding: 2vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#navbar-settings i {
    font-size: 1vw;
}