.nav-container {
    background: var(--purple-dark);
    background: linear-gradient(140deg, var(--purple) 0%, var(--purple-dark) 100%);
    color: white;
    width: 100%;
    height: var(--nav-height);
    position: sticky;
    top: 0;
    margin-bottom: 1rem;
}

.nav {
    list-style-type: none;
    display: flex;
    flex-flow: row;
    justify-content: space-evenly;
    align-items: stretch;
}

.nav-link {
    line-height: var(--nav-height);
    text-transform: uppercase;
    font-weight: bold;
}

.nav-link:hover {
    color: var(--purple-light);
    border-bottom: 3px solid var(--purple-light);
}

.nav-link.active {
    border-bottom: 3px solid var(--purple-light);
}

/* DESKTOP STYLING */
@media only screen and (min-width: 768px) {
    .nav {
        justify-content: flex-end;
    }

    .nav-item {
        margin: 0 1.5rem;
    }
}