/* navigation bar styling */
#nav {
    width: min(95vw, 1800px);
    min-height: var(--nav-height);
    background-color: #212529;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px 24px;
    padding: 0 24px;
    box-sizing: border-box;
    opacity: 1;
}

#nav > div:last-child {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 20px;
}

.nav-button {
    margin-left: 0;
    font-family: var(--nav-font);
    color: white;
}

#icon {
    font-size: 1.5em;
    font-family: var(--nav-font);
    font-weight: 700;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

#icon img {
    height: 32px;
    width: auto;
    margin-right: 8px;
}

.nav-button:hover {
    color: var(--UCLA-gold);
}

#nav-icon {
    width: 1em;
    margin: 5px;
}

/* footer style */
#footer {
    width: 100%;
    height: var(--nav-height);
    background-color: var(--nav-darkblue);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    font-size: 0.7em;
    color: grey;
    margin-top: 40px;
}
