* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #020202;
    /* overflow: hidden; */
    /* height: 100svh; */
    /* height: 100vh; */
}

html,
body {
    height: 100%;
    width: 100;

}

body {
    display: flex;
    flex-direction: column;
    /* max-height: 100vh; */
}

body {
    --sb-track-color: #020202;
    --sb-thumb-color: #a8a8a8;
    --sb-thumb-hover-color: #c4c2c2;
    --sb-size: 10px;
}

body::-webkit-scrollbar {
    width: var(--sb-size)
}

body::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 3px;
}

body::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 3px;

}

/* body:hover::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-hover-color);
    border-radius: 3px;

} */

@supports not selector(::-webkit-scrollbar) {
    body {
        scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
    }
}

@font-face {
    font-family: 'Zalando Sans Expanded';
    src: url(/fonts/ZalandoSans[wdth\,wght\,slnt].woff2) format('woff2');
}

@font-face {
    font-family: 'Inter';
    src: url(/fonts/inter-v20-latin-regular.woff2) format('woff2');
}

@font-face {
    font-family: 'Space Mono';
    src: url(/fonts/space-mono-v17-latin-regular.woff2) format('woff2');
}

h1 {
    font-size: 24pt;
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-variation-settings: 'wght' 500, 'wdth' 200, 'slnt' 0;
}

h2 {
    font-size: 15pt;
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-variation-settings: 'wght' 500, 'wdth' 200, 'slnt' 0;
}

ul {
    list-style: none;
}

a {
    color: white;
    text-decoration: none;
}

/* i {
    color: white;
} */

header {
    background-color: #020202;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 45px 0px 30px;
    min-height: 140px;
    width: 100%;
    top: 0;
    left: 0;
    position: relative;
    z-index: 1000;



    /* border-bottom: #929292 0.5px solid; */
}



header ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 106px;
}

/* header li {
    margin-left: 20px;
} */

header a {
    font-family: 'Inter', sans-serif;
    font-size: 11pt;
    font-variation-settings: 'wght' 300, 'wdth' 100, 'slnt' 0;
}

main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* flex: 1 0 auto; */
    min-height: 0;
    height: 100%;
    width: 100%;
}

main #current {
    font-family: 'Space Mono', sans-serif;
    font-size: 11pt;
    font-variation-settings: 'wght' 400, 'wdth' 100, 'slnt' 0;
    color: rgba(255, 255, 255, 1);
}

main a {
    font-family: 'Space Mono', sans-serif;
    font-size: 11pt;
    font-variation-settings: 'wght' 400, 'wdth' 100, 'slnt' 0;
    color: rgba(255, 255, 255, 0.7);
}

main a:hover {
    font-family: 'Space Mono', sans-serif;
    font-size: 11pt;
    font-variation-settings: 'wght' 400, 'wdth' 100, 'slnt' 0;
    color: rgba(255, 255, 255, 1);
    transition: color 0.1s ease-in-out;
}



main .top ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;

}

.s-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 42px 0px 0px 30px;
}

main .info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 20px;
    padding: 0px 30px 0px 30px;
    width: 100%;
}



main .info ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    text-align: end;
    line-height: 13pt;
    padding: 12px 6px 12px 6px;
}

main .info a {
    font-family: 'Space Mono', sans-serif;
    font-size: 11pt;
    font-variation-settings: 'wght' 400, 'wdth' 100, 'slnt' 0;
    color: #ffffff;

}

main p {
    font-family: 'Space Mono', sans-serif;
    font-size: 11pt;
    font-variation-settings: 'wght' 400, 'wdth' 100, 'slnt' 0;
    color: #ffffff;
}

.info #nav {
    visibility: hidden;
}




footer {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    padding: 50px 45px 50px 30px;
    width: 100%;
    bottom: 0;
    left: 0;
    position: relative;
    z-index: 1000;

}


footer p {
    font-family: 'Space Mono', sans-serif;
    font-size: 11pt;
    font-variation-settings: 'wght' 400, 'wdth' 100, 'slnt' 0;
}

footer .footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 40px;
    align-items: center;
    width: fit-content;
}

footer i {
    font-size: 20pt;
}

footer .socials {
    display: flex;
    flex-direction: row;
    gap: 20px;
}





@media screen and (max-width: 960px) {

   header ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 70px;
}
    
}



@media screen and (max-width: 768px) {


    h1 {
        font-size: 18pt;
    }


    header {
        flex-direction: row;
        align-items: flex-start;
        padding: 20px 30px;
        min-height: 64px;
        max-height: 64px;
    }

    header ul {
        visibility: hidden;
        overflow: hidden;
        max-width: 1px;
    }

    header a {
        font-size: 1pt;
    }

    main {
        flex-direction: column;
    }

    main .top ul {
        list-style: none;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }



    .s-nav {
        padding: 10px 30px 20px 30px;
        border-bottom: 1px solid #ffffff;

    }

    .info #nav {
        visibility: visible;
       
    }

    /* .s-nav ul {
        list-style: none;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        gap: 20px;
    } */

    footer {
        align-items: flex-end;
        padding: 20px 30px;
        /* border-top: 1px solid #ffffff; */
    }

    footer ul {
        text-align: right;
        gap: 14px;

    }
}


@media screen and (max-width: 568px) {


    h1 {
        font-size: 18pt;
    }


    header {
        flex-direction: row;
        align-items: flex-start;
        padding: 20px 20px;
        min-height: 64px;
        max-height: 64px;
    }

    header ul {
        visibility: hidden;
        overflow: hidden;
        max-width: 1px;
    }

    header a {
        font-size: 1pt;
    }

    main {
        flex-direction: column;
    }

    main a {
        font-size: 10pt;
    }

    main a:hover {
        font-family: 'Space Mono', sans-serif;
        font-size: 10pt;
        font-variation-settings: 'wght' 400, 'wdth' 100, 'slnt' 0;
        color: rgba(255, 255, 255, 1);
        transition: color 0.1s ease-in-out;
    }

    main #current {
        font-size: 10pt;
    }





    main .top ul {
        list-style: none;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    main .info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 10px;
    padding: 0px 30px 0px 30px;
    width: 100%;
}

    main .info a {
        font-size: 10pt;
    }

    main .info p {
        font-size: 10pt;
    }

    main .info ul {
        gap: 20px;
        padding: 12px 0px 12px 0px;
    }


    .s-nav {
        padding: 10px 20px 20px 20px;
        border-bottom: 1px solid #ffffff;

    }

    /* .s-nav ul {
        list-style: none;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        gap: 20px;
    } */

    footer {
        align-items: flex-end;
        padding: 20px 30px;
        /* border-top: 1px solid #ffffff; */


        color: white;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: end;


        width: 100%;
        bottom: 0;
        left: 0;

        z-index: 0;


    }

    footer ul {
        text-align: right;
        gap: 14px;

    }
}


@media only screen and (min-width: 3000px) {
  html {
    zoom: 200%
  }
}