nav {
    width: 100vw;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--nav-icon-size);
}

.icon {
    width: var(--nav-icon-size);
    height: var(--nav-icon-size);
    font-size: var(--nav-icon-size);
    text-align: center;
    color: var(--black);
    z-index: 11;
}

.logo {
    width: var(--nav-logo-size);
    height: var(--nav-logo-size);
    background-image: url('/img/logo.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 11;
}

/* MENU */
.menu {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--blue);
    z-index: 12;
}

.menu-item {
    margin: 0.5vh;
    padding: 3.5vh 2vh;
    background-image: linear-gradient(var(--white));
    background-repeat: no-repeat;
    background-size: 0%;
    background-position: center;
    transition: background-size 250ms ease-in-out;
}

.menu-item:hover {
    background-size: 100%;
    transition: background-size 250ms ease-in-out;
}

.menu-item a {
    color: var(--black);
    font-size: 4vh;
    text-decoration: none;
    z-index: 14;
}

.menu-item a:link:visited {
    color: var(--black);
}

.account-menu {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--blue);
    z-index: 12;
}