.headerDiv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    background-color: rgb(64, 64, 64);
    padding: 0 40px;
    box-shadow: 0px 0px 15px #282828c4;
    z-index: 9999;
}

.logoDiv a {
    display: flex;
    flex-direction: column;
}

#logoLabel {
    color: rgb(85, 85, 85);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 8px;
}

#logoSub {
    color: rgb(150, 150, 150);
    font-size: 10px;
    letter-spacing: 5px;
}

.menuList {
    display: flex;
    gap: 10px;
}

.listElement {
    color: rgb(150, 150, 150);
    padding: 10px 18px;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 250ms ease;
    border-bottom: 2px solid transparent;
}

.listElement:hover {
    color: #222222;
    background-color: #e8e8e8;
}

.languageDiv {
    display: flex;
    align-items: center;
    gap: 8px;
}

.languagePickSubmit {
    color: rgb(150, 150, 150);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: color 250ms;
}

.languagePickSubmit:hover, .activeLang {
    color: #e8e8e8;
}

#languageSep {
    color: rgb(150, 150, 150);
}

.menuButton {
    display: none;
    color: #cccccc;
    font-size: 24px;
    cursor: pointer;
}

@media only screen and (max-width: 1000px) {
    .headerDiv {
        padding: 0 20px;
        height: 80px;
    }

    .menuList {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: rgb(90, 90, 90);
        padding: 20px 0;
        text-align: center;
        box-shadow: 0px 0px 50px #282828ff;
    }

    .listElement {
        padding: 15px;
        font-size: 16px;
        color: #cccccc;
    }

    .menuButton {
        display: block;
    }
}