#cursor {
    opacity: 0;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10vh;
    height: 10vh;
    transform: scale(0.5);
    background-color: var(--black);
    transition:
        background-color 100ms ease-in-out,
        transform 200ms ease-in-out;
    color: var(--white);
    gap: 0.5vh;
    font-size: 3vh;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10;
}

.cursor-arrows {
    opacity: 0;
    transition: opacity 200ms ease-in-out;
}