@media only screen and (max-width: 1200px) {
    body {
        padding: 25px !important;
        flex-direction: column;
        align-items: end !important;
    }

    .menuicon {
        position: unset !important;
        right: unset !important;
        top: unset !important;
    }

    .menuicon img {
        height: 45px;
    }

    .menu {
        justify-content: center !important;
    }

    .menu .inner {
        width: calc(95vw);
    }

    .menu .inner .closeicon {
        font-size: 15vw !important;
        right: 65px !important;
    }

    header a img {
        width: 50%;
    }

    header .links,
    header .buttons {
        display: none !important;
    }

    header .mobile {
        display: flex !important;
    }

    footer {
        position: unset !important;
        margin-top: 25px;
    }
}

@font-face {
    font-display: swap;
    font-family: Satoshi;
    font-style: normal;
    font-weight: 300 900;
    src: url(Satoshi-Variable.woff2) format("woff2"),
        url(Satoshi-Variable.woff) format("woff"),
        url(Satoshi-Variable.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Satoshi-Bold;
    font-style: normal;
    font-weight: 700;
    src: url(Satoshi-Bold.woff2) format("woff2"),
        url(Satoshi-Bold.woff) format("woff"),
        url(Satoshi-Bold.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Satoshi-Black;
    font-style: normal;
    font-weight: 900;
    src: url(Satoshi-Black.woff2) format("woff2"),
        url(Satoshi-Black.woff) format("woff"),
        url(Satoshi-Black.ttf) format("truetype")
}

html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    background-color: var(--background-color);
}

* {
    box-sizing: inherit;
}

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

*,
*:hover {
    transition: 0.5s;
    font-family: Satoshi, sans-serif;
}

body,
body.white {
    --filter: 0%;
    --filter-trans: 100%;
    --background: url(background-white.png);
    --text-color: #000000;
    --background-color: #ffffff;
    --glass-1: rgba(255, 255, 255, 0.1);
    --glass-1-trans: rgba(0, 0, 0, 0.1);
    --glass-25: rgba(255, 255, 255, 0.25);
    --glass-25-trans: rgba(0, 0, 0, 0.25);
    --glass-9: rgba(255, 255, 255, 0.9);
    --glass-9-trans: rgba(0, 0, 0, 0.9);
}

body.dark {
    --filter: 100%;
    --filter-trans: 0%;
    --background: url(background-dark.png);
    --text-color: #ffffff;
    --background-color: #121212;
    --glass-1: rgba(0, 0, 0, 0.1);
    --glass-1-trans: rgba(255, 255, 255, 0.1);
    --glass-25: rgba(0, 0, 0, 0.25);
    --glass-25-trans: rgba(255, 255, 255, 0.25);
    --glass-9: rgba(0, 0, 0, 0.9);
    --glass-9-trans: rgba(255, 255, 255, 0.9);
}

body.black {
    --filter: 100%;
    --filter-trans: 0%;
    --background: url(background-black.png);
    --text-color: #ffffff;
    --background-color: #000000;
    --glass-1: rgba(0, 0, 0, 0.1);
    --glass-1-trans: rgba(255, 255, 255, 0.1);
    --glass-25: rgba(0, 0, 0, 0.25);
    --glass-25-trans: rgba(255, 255, 255, 0.25);
    --glass-9: rgba(0, 0, 0, 0.9);
    --glass-9-trans: rgba(255, 255, 255, 0.9);
}

body {
    background-image: var(--background);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Satoshi, sans-serif;
    color: var(--text-color);
    cursor: url(cursor.ico), auto;
    overflow: hidden;
}

*:hover {
    cursor: url(cursor.ico), auto;
}

a {
    color: var(--text-color);
    text-decoration: none;
}

.menuicon {
    z-index: 1;
    display: block;
    overflow: visible;
    position: absolute;
    right: 26px;
    top: -2px;
    rotate: 0deg;
    filter: invert(var(--filter-trans));
}

.menuicon:hover {
    rotate: 180deg;
}

.menu {
    box-sizing: border-box;
    height: 100vh;
    max-width: 111vw;
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 50px;
    align-content: center;
    gap: 25px;
    position: absolute;
    z-index: 10;
    right: -100vw;
    display: none;
    color: var(--background-color);
}

.menu.opened {
    right: 0vw;
    display: unset !important;
}

.menu .inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 45px;
    background-color: var(--text-color);
    gap: 25px;
    border-radius: 20px;
    max-width: 400px;
}

.menu.opened .inner {
    box-shadow: 10px 10px 1000px 0px var(--text-color);
}

.menu .inner .closeicon {
    display: block;
    overflow: visible;
    position: absolute;
    right: 95px;
    top: 65px;
    font-size: 3vw;
}

.menu .inner h3 {
    font-family: "Satoshi Black", sans-serif;
    font-size: 59px;
    margin: 0px;
    text-transform: uppercase;
}

.menu .inner hr {
    width: 90%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 100px;
}

.menu .inner .links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu .inner .links a {
    min-width: 343px;
    height: 65px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-family: "Inter", sans-serif;
    background-color: var(--text-color);
    border-radius: 35px;
    color: var(--background-color);
    font-size: 30px;
}

.menu .inner .icons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 220px;
}

.menu .inner .icons img {
    filter: invert(var(--filter-trans));
}

.mobilemenu {
    display: none;
}

.mobilemenu.opened {
    display: block !important;
    width: 100%;
}

.mobilemenu .links {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    gap: 10px;
}

.mobilemenu .links a::before {
    content: "- ";
}

.mobilemenu .icons {
    display: flex;
    margin-top: 20px;
    gap: 10px;
}

.mobilemenu .icons img {
    filter: invert(var(--filter));
    height: 20px;
}

header {
    width: 100%;
    height: min-content;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    align-content: center;
}

header a img {
    filter: invert(var(--filter-trans));
}

header h3 {
    font-size: 40px;
    margin: 0;
    text-shadow: 0px 1px 54px var(--glass-25-trans);
}

header .links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

header .links a {
    font-size: 25px;
}

header .links a:hover {
    text-decoration: underline;
}

header .buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

header .buttons button {
    background-color: transparent;
    border-radius: 15px;
    border: 3px solid var(--text-color);
    color: var(--text-color);
    font-size: 20px;
    font-weight: 900;
    padding: 15px 25px;
}

header .buttons button:hover {
    transform: scale(1.1);
}

header .buttons button.filled {
    background-color: var(--text-color);
    color: var(--background-color);
    box-shadow: 0px 1px 50px 0px var(--glass-25-trans);
}

header .mobile {
    display: none;
    gap: 10px;
}

header .mobile img {
    filter: invert(var(--filter-trans));
}

footer {
    position: absolute;
    bottom: 25px;
    text-align: center;
}