nav {
    margin: 0;
    padding: 0;
    top: 0;
    position: sticky;
    overflow: hidden;
    font-weight: bold;
    color: var(--nav-text-color);
    background-color: var(--nav-color);
    box-shadow: 0 0 1px 5px var(--nav-shadow-color);
    z-index: 10;
}

.banner{
    font-size: x-large;
    background-color: var(--nav-banner-color);
}

.functions {
    font-size: large;
}

nav,
.banner,
.icon,
.functions,
.left,
.right {
    display: flex;
}

.icon {
    align-items: center;
    padding: 5px;
}

.icon img {
    height: 50px;
}

.title,
.item {
    align-content: center;
}

.title {
    padding: 14px 17px 14px 7px;
    cursor: default;
}

.item {
    flex-direction: column;
    padding: 14px 16px;
    cursor: pointer;
}

.functions,
.left,
.right {
    flex: 1;
}

.right {
    justify-content: right;
}

.item:hover {
    background-color: var(--nav--item-hover);
    color: var(--nav-text-color-hover);
}