
body{
    --nav-height: 75px;
}

nav {
    right: 0;
    left: 0;
    margin: 0;
    z-index: 99;

    background-color: var(--nav-color);

    display: flex;
    flex-direction: row;

    flex-wrap: wrap;
    -ms-align-items: center;
    align-items: center;

    overflow: hidden;
    width: 100%;
    height: var(--nav-height);

    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.35);
}
nav.mobile{
    display: none;
}

nav * {
    font-family: var(--nav-text-font);
}

nav.top {
    position: fixed;
    top: 0;
}
