@media screen and (min-width:480px) {

    .cursor {
        width: 30px;
        height: 30px;
        border: 2px solid rgb(255, 0, 0);
        border-radius: 50%;
        position: absolute;
        transition-duration: 200ms;
        transition-timing-function: ease-out;
        animation: cursorAnim 0.5s infinite alternate;
        pointer-events: none;
        z-index: 1000000000000;
        }
        .cursor::after {
        z-index: 1000000000000;
        content: "";
        width: 30px;
        height: 30px;
        position: absolute;
        border: 8px solid rgb(255, 125, 125);
        border-radius: 50%;
        opacity: 0.5;
        top: -9.7px;
        left: -9.7px;
        animation: cursorAnim2 0.5s infinite alternate;
        }
        @keyframes cursorAnim {
        from {
            transform: scale(1);
        }
        to {
            transform: scale(0.7);
        }
        }
        @keyframes cursorAnim2 {
        from {
            transform: scale(1);
        }
        to {
            transform: scale(0.4);
        }
        }
        @keyframes cursorAnim3 {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(3);
        }
        100% {
            transform: scale(1);
            opacity: 0;
        }
        }
        
}