@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body
{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    background-color: #000000;
}
h2
{
    margin-bottom: 30px;
    font-size: 2.5rem;
}
.cursor{
    z-index: 999;
    position: fixed;
    background: #2696E8;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 20px #2696E8,
                0 0 60px #2696E8,
                0 0 100px #2696E8;
    display: none;
    animation: colors 5s infinite;
    transform: translate(-50%, -50%);
}
@keyframes colors{
    0%{
        filter: hue-rotate(0deg);
    }
    100%{
        filter: hue-rotate(360deg);
    }
}
.cursor:before{
    content: '';
    position: absolute;
    background: #2696E8;
    width: 50px;
    height: 50px;
    opacity: 0.2;
    transform: translate(-30%, -30%);
    border-radius: 50%;
}
.wrapper {
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000; 
}
.txt {
    color: #ffffff;
    background:#000000;
    font-size: 3rem;
    font-weight: bold;
    font-family: Arial;
    text-transform: uppercase;
}
.neon wrapper {
    display: inline-flex;
}
.txt::before {
    content: 'GENSHIN MATCHING GAME';
    position: absolute;
    mix-blend-mode: difference;
}
.txt::before {
    content: 'GENSHIN MATCHING GAME';
    position: absolute;
    mix-blend-mode: difference;

    filter: blur(1px);
}
.neon-wrapper {
    display:inline-flex;
    overflow: hidden;
    filter: brightness(200%);
}
.gradient{
    background: linear-gradient(114.5793141156962deg, rgba(6, 227, 250,1) 4.927083333333334%,rgb(235, 83, 162) 97.84374999999999%);
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    height:100%;
    mix-blend-mode: multiply;
}
.dodge {
    background: radial-gradient(circle,white,black 35%) center / 25% 25%;
    position: absolute;
    top:-100%;
    left:-100%;
    right:0;
    bottom:0;
    mix-blend-mode: color-dodge;
    animation: dodge-area 3s linear infinite;
}
@keyframes dodge-area {
    to {
        transform: translate(50%,50%);
    }
}
.box
{
    position: relative;
    width: 600px;
    height: 200px;
    border-bottom: 2px solid #555;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.box label
{
    position: relative;
    width: 100%;
    height: 33.333%;
    border: 2px solid #555;
    border-bottom: none;
}
.box label input
{
    position: relative;
    appearance: none;
    z-index: 10;
}
.box label i
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 600px;
}
.box label:nth-child(1) i
{
    background-image: url(001.jpg);
    animation: animate 0.5s steps(3) infinite;
}
.box label:nth-child(2) i
{
    background-image: url(002.jpg);
    animation: animate 0.4s steps(3) infinite;
}
.box label:nth-child(3) i
{
    background-image: url(003.jpg);
    animation: animate 0.7s steps(3) infinite;
}
@keyframes animate
{
    0%
    {
        background-position: 0%;
    }
    100%
    {
        background-position: 600px;
    }
}
.box label input:checked ~ i
{
    animation-play-state: paused;
}
.reset
{
    margin-top: 40px;
    border: none;
    font-size: 1.25rem;
    padding: 10px 25px;
    background: rgb(68, 202, 228);
    color: #fff;
}
.reset:hover
{
    background: rgb(248, 100, 124);
}
.reset:active
{
    background: #d63c3c;
    transform: scale(0.95);
}