.header {
    height: 70px;
    display: flex;
}

.skew {
    transform: skew(-30deg);
}

.unskew {
    transform: skew(30deg);
}

span.gradient {
    background: #e59344;
    background: linear-gradient(45deg, #e59344, #ff5858);
    margin-right: auto;
    padding: 0 1em;
    position: relative;
    right: 2em;
}

.logo {
    padding: 0 4em;
}

h1.logo {
    color: #141414;
    font-size: 1.75em;
}

h1.logo a {
    color: #fff;
    text-decoration: none;
}


.nav {
    width: 70px;
    height: 100%;
}

.navEntry {
    align-items: center;
    background-color: #333;
    border-top: 2px solid #e59344;
    cursor: pointer;
    display: flex;
    height: 70px;
    justify-content: center;
    position: absolute;
    top: 0;
    transition: all 0.2s ease-in;
    transition-property: all;
    transition-timing-function: ease-in-out;
    width: 70px;
    z-index: 1;
}

.navEntry:hover {
    background-color: #e59344;
}

.navEntryContent {
    align-items: center;
    background-color: #141414;
    border-bottom: 2px solid #e59344;
    border-radius: 5px;
    border-right: 2px solid #e59344;
    border-top: 2px solid #e59344;
    color: #e59344;
    display: none;
    font-size: 18px;
    font-weight: 600;
    height: 70px;
    left: 120%;
    padding: 0px 20px 0px 20px;
    position: absolute;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}

.navIcon:hover + .navEntryContent {
    display: flex;
}

.nav .navEntry:first-child {
    top: 70px;
}

.nav .navEntry:nth-child(2) {
    top: 140px;
}

.nav .navEntry:nth-child(3) {
    top: 210px;
}

.nav .navEntry:nth-child(4) {
    top: 280px;
}
