:root{
    --nav-bg: rgb(22, 22, 22);
}

nav {
    color: var(--dark-font);
    background-color: var(--nav-bg);
    padding: 0 10%;
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 40px;
    z-index: 100;
}

.desktop-navigation {
    display: none;
    justify-content: space-between;
    list-style: none;
    align-items: center;
}

.nav-item {
    padding: 14px;
    text-align: center;
}

.nav-item a {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: var(--dark-font)
}

.nav-item a:hover {
    color: rgb(255, 255, 255);
}

/* NAVIGATION MOBILE */
#mobile-navigation {
    display: none;
    position: fixed;
    background-color: var(--nav-bg);
    width: 100%;
    top: 40px;
    left: 0;
}

#hamburger-icon {
    display: block;
}

#close-icon {
    display: none;
}

.hamburger-button {
    height: 20px;
}