/* latin-ext */

@font-face {
    font-family: 'Titillium Web';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/titilliumweb/v10/NaPDcZTIAOhVxoMyOr9n_E7ffGjEGIVzY4SY.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}


/* latin */

@font-face {
    font-family: 'Titillium Web';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/titilliumweb/v10/NaPDcZTIAOhVxoMyOr9n_E7ffGjEGItzYw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
    background-color: rgb(4, 9, 13);
    color: white;
    --header-height: 60px;
    padding: 0;
    margin: 0;
    font-family: 'Titillium Web', sans-serif;
}

::selection {
    background: rgb(107, 12, 199);
    /* WebKit/Blink Browsers */
}

::-moz-selection {
    background: rgb(107, 12, 199);
    /* Gecko Browsers */
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: gray
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px gray;
    border-radius: 10px;
}

::-webkit-scrollbar {
    width: 10px;
}

.header {
    position: fixed;
    top: 0;
    z-index: 1;
    height: var(--header-height);
    /* wenn das verändert wird, dann auch das padding-top bei .tab ver ändern/anpassen!!!*/
    width: 100%;
    display: flex;
    background-color: rgb(29, 31, 34);
}

.header-logo {
    height: 100%;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 0px;
    padding-bottom: 0px;
    align-self: center;
    border-right: 1px solid #333;
}

[data-tab-content] {
    display: none;
}

.active[data-tab-content] {
    display: block;
}

.tabs {
    display: flex;
    width: 70%;
    align-content: center;
    justify-content: space-around;
    list-style-type: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    padding-right: 150px;
}

.tab {
    padding-top: calc(var(--header-height) - 75px);
    padding-bottom: calc(var(--header-height) - 17px);
    /*43px;*/
    color: grey;
    cursor: pointer;
    align-content: center;
    font-size: 21px;
    min-width: 100px;
    text-align: center;
}

.tab::after {
    padding-bottom: calc(var(--header-height) - 49px);
    /*11px;*/
    display: block;
    content: '';
    border-bottom: 1px solid white;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
}

.tab.active {
    border-bottom: 1px solid white;
    color: white;
}

.tab:hover {
    color: white;
}

.tab:hover::after {
    transform: scaleX(1);
}

.tab-content {
    /*top: var(--header-height);*/
    position: relative;
}