.navBar {
    width: 100vw;
    height: 100px;
    background: var(--nav-bar-back);
    display: flex;
    justify-content: center;
    vertical-align: center;
    gap: 50px;
}
.navBarList {
    width: 100vw;
    height: auto;
    background: var(--nav-bar-back);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.navBarItem {
    width: 100px;
    height: 100px;
    border-left: aqua;
    border-right: aqua;
    overflow-y: visible;
}

.navBarListItem {
    width: 100%;
    height: 100px;
    padding-bottom: 3px;
    padding-top: 3px;
    border-left: aqua;
    border-right: aqua;
    overflow: hidden;
}

.navButtonSpace {
    z-index: 10;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}
.navButton {
    width: 100%;
    height: 100%;
    color: var(--text-color-primary);
    text-align: center;
    vertical-align: center;
    background: var(--nav-bar-back);
    border: none;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    transition-duration: 0.5s;
    z-index: 3;
}
.navButton:hover {
    background: var(--text-color-primary);
    color: var(--nav-bar-back);
    transition-duration: 0.5s;
    height: 120%;
}

.navLogoSpace {
    width: 20%;
    display: flex;
    justify-content: center;
    vertical-align: center;
    gap: 50px;
    overflow: visible;
}
.navLogo {
    width: 100px;
    height: 120px;
    background: var(--nrc-red);
    margin: 0 auto;
    z-index: 4;
}

.navLogoContainer {
    width: 75%;
    margin: 0 auto;
    margin-top: 25%;
}

@media (max-width: 1000px) {
    .navButton {
        font-size: 1.4em;
    }

    .navBar {
        gap: 0px;
    }

}