* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: arial;
	text-transform: uppercase;
}
body {
	display: flex;
	height: 100vh;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #000;
	cursor: none;
}
.black {
	color: #fff;
	font-size: 8em;
}
.lives {
	background: #fff;
	color: #000;
	font-size: 8em;
	padding: 0px 20px;
}
.matter {
	color: #fff;
	font-size: 8em;
}


.cursor {
	width: 100px;
	height: 100px;
	border-radius: 50px;
	background: #fff;
	position: absolute;
	mix-blend-mode: difference;
	border: 5px solid #000;
	transform: translate(-50%, -50%);
	pointer-events: none;
	transition: transform .4s ease;
}