.header {
    outline: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--site-bg-secondary);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.13);
    padding: 0 1em;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border: 1px solid transparent;
    display: flex;
    position: fixed;
    width: 100%;
    z-index: 3;
    height: 5em;
}

.guideLinks {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.guideLinks a {
    color: #ffffff;
    font-size: 1.2em;
    margin-right: 1em;
}

.headerTitle {
    display: flex;
    align-items: center;
}

.headerTitle a {
    font-size: 2em;
    color: rgb(255, 255, 255);
}

.header a:hover {
    text-shadow: rgba(255, 255, 255, 0.5) 0 0 10px;
}

.headerTitle img {
    padding: 0.8em 1em 0.8em 0;
    max-width: 100%;
    max-height: 100%;
}

.headerMenu {
    display: flex;
    align-items: center;
}

#navButton {
    cursor: pointer;
    color: white;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    font-size: 1.7em;
    width: 2em;
    height: 2em;
}

#navButton:hover {
    transform: scale3d(1.05, 1.05, 1.05);
}

#navButton:active {
    transform: scale3d(0.95, 0.95, 0.95) !important;
}

@media only screen and (max-width: 700px) {
    .guideLinks {
        display: none;
    }

    #logo {
        display: none;
    }
}

@media only screen and (min-width: 900px) {
    .headerMenu {
        display: none;
    }
}
