body {
    margin: 0px;
    overflow: hidden;
    background-color: black;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}


#pointer {
    background-color: white;
    height: 500px;
    aspect-ratio: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    border-radius: 50%;
    background: linear-gradient(
        to right,
        aquamarine,
        mediumpurple
    );
    animation: rotate 20s infinite;
    pointer-events: none;
    opacity: 0.8;
    filter: blur(200px);
}

#blur {
    display: grid;
    place-items: center;
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: 2;
}

button {
    position: relative;
    border: 2px solid white;
    color: white;
    background: none;
    width: 15vh;
    height: 5vh;
    border-radius: 8px;
    font-size: 1.75rem;
    background: -webkit-linear-gradient(aquamarine, mediumpurple);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
}

@keyframes rotate {
    from {
        rotate: 0deg;
    }

    50% {
        scale: 1 1.25;
    }
    to {
        rotate: 360deg;
    }
}

