.strokeme {
    
    color: transparent;

}

.strokeme:hover,
.strokeme:focus {
    color: white;
    transition: 0.01s;
}

/** Cursor */

.hover-this {
    transition: all 0.4s ease;
	max-width: 780px;


}

.cursor {
    pointer-events: none;
    position: fixed;
    padding: 0.3rem;
    background-color: #fff;
    border-radius: 50%;
    mix-blend-mode: difference;
    transition: transform 0.3s ease;
    z-index: 99999;
}

.hover-this:hover ~ .cursor {
    transform: translate(-50%, -50%) scale(8);
}
