body {
    background-color: #120212;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin: 0;
    padding: 0;

    color: white;
    display: flex;
    flex-wrap: wrap;
    min-height: calc(100vh - 20px);
    overflow-x: hidden;
    justify-content: center;
    gap: 30px;
    background-image: url("../images/g1.png");
    background-size: cover;
    background-position: center;

    background-position-x: calc(var(--mousex) * 10px);
    background-position-y: calc(var(--mousey) * 10px);

    padding-top: 20px;

}

.logo {
    align-self: center;
    transform: rotate(-3deg);
}

.logo img {
    width: 400px;
    position: relative;
    left: calc(var(--mousex) * 15px);
    top: calc(var(--mousey) * 15px);
    transform: rotate(calc((var(--mousex) + var(--mousey)) * 10deg));
}

.title {
    text-align: left;
    font-size: 24px;
    align-self: center;
    align-content: center;
    display: flex;
    flex-direction: column;
}

.title .header {
    margin-left: -10px;
    text-shadow: 1px 1px #3647FF;
    text-align: center;
}

.title .header span {
    font-size: 32px;
}


.title p {
    margin: 10px;
}

.timer {
    font-size: 64px;
    text-shadow: 2px 2px #3647FF;
    min-width: 400px;
}

.timer span {
    font-size: 16px;
    color: #FF1866;
    margin: -10px;
    text-shadow: none;
}


.title .action {
    cursor: pointer;
    width: 300px;
    height: 90px;
    border: 2px solid #3647FF;
    margin-top: 30px;
    border-radius: 30px;
    display: flex;
    justify-items: center;
    align-items: center;
    transition: all .2s linear, box-shadow .2s linear 0.05s;
    background-color: #120212;
    margin: 20px auto 0 auto;
}

.title .action:hover {
    background-color: #3647FF;
    box-shadow: 2px 3px #FF1866;
    transform: scale(1.05);
}

.title .action div {
    text-align: center;
    font-weight: 500;
    width: 100%;
    user-select: none;
    -webkit-user-select: none;
}

.title .action img {
    height: 40px;
    margin-right: 20px;
    vertical-align: middle;
}

.title small {
    font-size: 14px;
    text-align: center;
    margin-top: 16px;
    opacity: 0.6;
}

.note {
    width: 100%;
}

.note p {
    opacity: 0.8;
    font-size: 16px;
    max-width: 90vw;
    font-weight: 600;
    margin: 20px auto 0 auto;
    text-align: center;
}

.sponsors {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    text-shadow: 1px 1px #FF1866;
}

.sponsors .bar-wrap {
    width: 100%;
    text-align: center;
    font-size: 22px;
    margin-top: -30px;
}

.sponsors .bar-wrap span {
    margin-top: 10px;
    display: inline-block;
}

.sponsors .bar {
    width: 220px;
    height: 1px;
    background-color: white;
    margin: 0 auto;
    box-shadow: 1px 1px #FF1866;
}

.sponsors .list {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.sponsors .list img {
    height: 48px;
    margin: 8px 20px;
}

@media (max-width: 859px) {
    body {
        background-position-x: center;
        background-position-y: initial;
    }

    .logo img {
        max-width: 50vw;
        left: initial;
        top: initial;
        transform: initial;
    }

    .title .header {
        margin-left: -10px;
    }

    .timer {
        min-width: 100vw;
        text-align: center;
    }

    hs {
        display: none;
    }

    .sponsors .bar-wrap {
        margin-top: 0;
    }
}

@media (max-width: 419px) {
    hxs {
        display: none;
    }
}