@import url("https://s3-api.zonerkin.xyz/assets/theme.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap");

body {
    font-family: "Roboto Flex", sans-serif;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    padding: 0;
    font-variation-settings:
        "slnt" 0,
        "wdth" 118,
        "wght" 550,
        "GRAD" 150,
        "XOPQ" 96,
        "XTRA" 468,
        "YOPQ" 79,
        "YTAS" 750,
        "YTDE" -203,
        "YTFI" 738,
        "YTLC" 514,
        "YTUC" 712;
}

::selection {
    background-color: var(--a1-300);
}

html.white {
    &: root.white;
}

html.black {
    &: root.black;
}

.logo-dark {
    display: none !important;
}

html.black .logo-light {
    display: none !important;
}

html.black .logo-dark {
    display: block !important;
}

container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.lm {
    align-items: center;
    display: block;
    margin: 0 auto;
    margin-top: 10%;
    width: 256px;
    height: 224px;
}

h1 {
    font-size: 96px;
    font-weight: 500px;
    text-align: center;
    margin: 0 auto;
}

.accent-text {
    color: var(--acc);
}

.btn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5%;
    margin-right: 0 auto;
    margin-left: 0 auto;
    justify-content: center;
    justify-items: center;
    max-width: 5%;
    margin: 0 auto;
    margin-top: 1%;
}

.button {
    background-color: var(--button);
    width: 150px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    border: 0;
    flex-wrap: wrap;
    cursor: pointer;
    font-size: 24px;
    font-variation-settings:
        "slnt" 0,
        "wdth" 100,
        "wght" 500,
        "GRAD" 100,
        "XOPQ" 96,
        "XTRA" 468,
        "YOPQ" 79,
        "YTAS" 750,
        "YTDE" -203,
        "YTFI" 738,
        "YTLC" 514,
        "YTUC" 712;
}

.button:hover {
    background-color: #9e87b1;
}

.ubutton {
    background-color: var(--ubutton);
    color: #fff;
    width: 150px;
    height: 40px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    border: 0;
    font-size: 24px;
    font-variation-settings:
        "slnt" 0,
        "wdth" 100,
        "wght" 500,
        "GRAD" 100,
        "XOPQ" 96,
        "XTRA" 468,
        "YOPQ" 79,
        "YTAS" 750,
        "YTDE" -203,
        "YTFI" 738,
        "YTLC" 514,
        "YTUC" 712;
}

@media (max-width: 1024px) {
    .container {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        flex-direction: column;
    }

    .button {
        width: 200px;
        height: 40px;
    }

    .ubutton {
        width: 200px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .container {
        min-height: 75vh;
    }

    .button {
        width: 120px;
        height: 40px;
        font-size: 20px;
    }

    .ubutton {
        width: 120px;
        height: 40px;
        font-size: 20px;
    }

    .btn-grid {
        max-width: 15%;
    }

    h1 {
        font-size: 84px;
        line-height: 0.9;
    }
}

@media (max-width: 376px) {
    .button {
        width: 110px;
        height: 35px;
    }

    .ubutton {
        width: 110px;
        height: 35px;
    }

    h1 {
        line-height: 0.85;
    }
}

a {
    text-decoration: none;
    user-select: none;
    color: #fff;
}
