* {
    box-sizing: border-box;
}
*:before, *:after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scrollbar-color: #484848 #000;
    scrollbar-width: auto;
}

body {
    line-height: 1;
    font-family: Lato, sans-serif;
    background-color: #1b1b1c;
    font-size: 100%;
    vertical-align: baseline;
    margin: 0;
    user-select: none;
    color: #c0c0c0;
    --site-max-width: 1150px;
}

main {
    max-width: var(--site-max-width);
    margin: auto;
    padding: 10px;
}

.dummy {
    margin-top: 100%;
}

header {
    background: #262626;
    position: sticky;
    top: 0;
}

.header {
    margin: auto;
    max-width: calc(var(--site-max-width) - 20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    height: 80px;
}

.header__links {
    flex-grow: 1;
    display: flex;
    list-style: none;
    justify-content: end;
    align-items: center;
    margin: 0;
    align-self: stretch;
}

.header__links_one {
    color: #c0c0c0;
    font-size: 18px;
    padding: 0 20px;
    height: 100%;
    cursor: pointer;
}

.header__links_one.active:hover,
.header__links_one.active {
    background: #0e0e0e;
}

.header__links_one a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

.header__links_one:hover {
    background: #161616;
}

.header__hamburger {
    display: none;
    align-self: stretch;
    justify-content: center;
    flex-direction: column;
    padding: 0 20px;
    cursor: pointer;
}

@media screen and (max-width: 750px) {
    header {
        z-index: 1001;
    }
    .header__links.none {
        display: none;
    }
    .header__hamburger {
        display: flex;
    }
    .header__links {
        position: absolute;
        top: 80px;
        flex-direction: column;
        left: 0;
        right: 0;
        background: #343434f6;
        align-items: stretch;
        padding: 0;
    }
    .header__links_one {
        border-bottom: solid 1px #666;
        padding: 30px 20px;
    }
}
