body > .header {
    background: white;
    padding: 0 30px;
    z-index: 999;

    box-shadow: 0 2px 20px rgba(142,156,170,0.2);

    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 60px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header > .logo > .link > .image {
    margin-top: -3px; /* visual center is 10% up from container center*/
    height: 30px;
}

.header > .nav-full {
    height: 60px;
    width: auto;
    
    overflow: hidden;
    margin-left: 60px;

    display: flex;
    flex-grow: 1;
    flex-direction: row;
    justify-content: flex-end;
    align-content: center;
}

.header > .nav-full > div, .header > .nav-full > .link {
    height: inherit;
    text-decoration: none;

    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;

    padding: 0 30px 0 30px;
}

.header > .nav-small {
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: flex-start;

    background: white;
    position: fixed;
    top: 65px;
    right: 30px;
    border-radius: 0.25rem;

    box-shadow: 0 2px 20px rgba(142,156,170,0.2);
}

.header > .nav-small > div, .header > .nav-small > .link {
    height: 60px;
    text-decoration: none;

    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;

    padding: 0 90px 0 30px;
}

.nav-container > div:hover, .nav-container > .link:hover {
    background: var(--sub-white);
}

.nav-small > div:hover:last-child, .left-bar > .nav-container > div:hover:last-child {
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.nav-small > .link:hover:last-child, .left-bar > .nav-container > .link:hover:last-child {
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.nav-small > div:hover:first-child, .left-bar > .nav-container > div:hover:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.nav-small > .link:hover:first-child, .left-bar > .nav-container > .link:hover:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.nav-container > div > .title,
.nav-container > .link > .title {
    margin-left: 10px;
    font-size: 0.9rem;
    margin-top: -0.1rem; /* visual center */

    white-space: nowrap;
}

.header .nav-container > div > .icon,
.header .nav-container > .link > .icon {
    width: 24px;
    height: 24px;
}

.header > .menu-button {
    justify-self: flex-end;
    height: 30px;
    width: 30px;
}

.header > .menu-button > .icon {
    display: block;
    height: 30px;
    width: 30px;
}