@media screen and (min-width: 1200px) {
.cursor {
    width: 40px;
    height: 40px;
    border: 1px solid darkgrey;
    border-radius: 50%;
    position: absolute;
    transition-duration: 200ms;
    transition-timing-function: ease-out;
    animation: cursorAnim 5.5s infinite alternate;
    pointer-events: none;
    box-sizing: content-box;
    
}

.cursor::after {
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    background-color: grey;
    border: 1px solid gray;
    top: -1px;
    left: -1px;
    border-radius: 50%;
    opacity: .3;
    animation: cursorAnim2 5.5s infinite alternate;
}

.expand {
    animation: cursorAnim3 .5s forwards;
    border: 2px solid #1d9b6c;
}
}

@keyframes cursorAnim {
    from {
        transform: scale(0.9);
    }
    to {
        transform: scale(.7);
    }
}

@keyframes cursorAnim2 {
    from {
        transform: scale(1.3);
    }
    to {
        transform: scale(.5);
    }
}

@keyframes cursorAnim3 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(3);
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}



