:root {
    --header-heigh: 40px;
}

header {
    background-color: rgb(45, 217, 255);
    height: var(--header-heigh);
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

nav {
    width: 100%;
}

.header__opts {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #0000;
}
.header__opts_left,
.header__opts_right {
    height: 100%;
    display: flex;
    background-color: #0000;
    align-items: center;
}
.header__opts_right {
    margin-left: auto;
}
.header__opt_separator_medium,
.header__opt_separator_small {
    width: 4vw;
}
#header__opt_experience {
    cursor: default;
    background: none;
}
.header__opt {
    height: var(--header-heigh);
    max-width: fit-content;
    letter-spacing: 5px;
    background-color: #0000;
    text-align: center;
    min-width: 30px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 4px;
}
.header__opt:hover {
    background-color: rgb(0, 204, 250);
    border-radius: 10px;
}
.header__link {
    color: white;
    font-size: 20px;
    text-decoration: none;
}
.header__img {
    height: 30px;
    width: 30px;
    background: none;
    padding: 0;
}


@media (width < 922px) {
    .header__opts {
        margin: 0;
        padding: 0;
    }
    .header__opt_separator_medium {
        width: 3vw;
    }
    .header__opt_separator_small {
        width: 1vw;
    }
    .header__opt {
        letter-spacing: normal;
    }
}
@media (width < 728px), (height < 890px) {
    header {
        height: fit-content;
    }
    .header__opt {
        margin: 5px 0 0 0;
        height: 30px;
    }
    .header__opt:hover {
        border-radius: 10px;
    }
    .header__opt_separator_medium {
        height: 0;
        width: 0;
    }
    .header__opts_left,
    .header__opts_right {
        flex-direction: column;
        justify-content: space-around;
        width: 50%;
    }
}