header {
    position: fixed;
    display: flex;
    width: 100svw;
    height: fit-content;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    top: 0;
    left: 0;
    z-index: 9999;
    padding: 1rem 5%;
    background-color: rgba(0, 0, 0, 0.2);
}

header div.title {
    display: flex;
    width: max-content;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

header div.title > div {
    width: max-content;
}

header div.title :where(h1,h2, h3, h4, h5, h6) {
    width: max-content;
    margin: 0;
    color: #fff;
    font-weight: 400;
}

header div.title div.major > * {
    font-weight: 600;
}
header div.lang-switch {
    display: flex;
    width: fit-content;
    height: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

header div.lang-switch p{
    display: flex;
    width: 100%;
    margin: auto 0;
    color: #fff;
}

header div.lang-switch p a {
    background-color: transparent;
    border: none;
    color: #fff;
}

header div.lang-switch p * {
    font-size: var(--pc-h4-font-size);

}

@media screen and (max-width: 768px) {

    header div.lang-switch p * {
        font-size: var(--mobile-h4-font-size);
    }
    
}