
* {
	cursor: none;
}

.cursor {
	position: fixed;
	z-index: 99999;
	height: 0;
	width: 0;
	border: 4px solid #fff;
	border-radius: 50%;
	transform: translate(-50%,-50%);
	pointer-events: none;
	transition : width 0.2s, height 0.2s;
	mix-blend-mode: difference;
}

/*
ul li:hover ~ .cursor {
	width: 100px;
	height: 100px;
	border:2px solid aqua;
}
*/
