:root {
    --animate-duration: 5s;
    --animate-delay: 8s;
}
body {
    cursor: none;
}
.cursor .cursor--small, .cursor .cursor--large, .cursor .cursor--text {
    position: fixed;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: var(--cursor-size);
    height: var(--cursor-size);
    mix-blend-mode: difference;
    pointer-events: none;
    user-select: none;
    z-index: 999999;
}
.cursor .cursor--text {
    --cursor-size: fit-content;
    font-size: 0.75rem;
    color: #fff;
    opacity: 0;
}
.cursor .cursor--text .text {
    font-family: sans-serif;
    font-weight: bold;
}
.cursor .cursor--small {
    --cursor-size: 16px;
    background: #fff;
}
.cursor .cursor--large {
    --cursor-size: 50px;
    border: 2px solid #fff;
}