#cursor {
    background-color: black;
    border-radius: 100%;

    height: 50px;
    width: 50px;

    display: block;
    position: absolute;
    top: 0;
    left: 0;

    filter: invert(1);
    mix-blend-mode: difference;

    /* Mouse going off the screen */
}

@media (max-width: 1000px) {
    #cursor {
        all: unset;
    }
}

/* #tip {
    background-color: white;
    color: black;
    border-radius: 15px;

    position: relative;
    top: 10px;
    left: 60px;
    padding: 5px 10px;

    animation: blink 1s step-end 0s infinite;
    -webkit-animation: blink 1s step-start 0s infinite;
}

@keyframes blink {
    50% {
        opacity: 0.0;
    }
}

@-webkit-keyframes blink {
    50% {
        opacity: 0.0;
    }
} */