* {
	margin: 0;
	padding: 0;
}

body {
	height: 100%;
	width: 100%;
	cursor: none;
	background-color: aliceblue;
	font-family: "Montserrat Subrayada", sans-serif;
	overflow: hidden;
}

.info {
	font-size: 2vw;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	position: absolute;
	height: 100vh;
	width: 100vw;
	background-color: black;
	color: grey;
}

button {
	width: 100px;
	height: 50px;
	background-color: #ff00ff;
	font-family: "Montserrat Subrayada", sans-serif;
	font-size: 1.2vw;
	border: none;
	cursor: pointer;
}
#high-txt {
	visibility: hidden;
}

.flex {
	height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
}

.score {
	text-align: center;
	font-size: 3em;
	text-shadow: 2px 2px 5px red;
}
.high-score {
	text-align: center;
	font-size: 3em;
	text-shadow: 2px 2px 5px red;
}

.wrapper {
	width: 100%;
	height: 100%;
}

#cursor {
	position: absolute;
	pointer-events: none;
	display: none;
}

#heart {
	position: absolute;
	pointer-events: none;
	display: none;
	transition: 100ms;
	transition-timing-function: linear;
}
#happend {
	font-size: 3em;
	visibility: hidden;
	text-shadow: 2px 2px 5px red;
	text-align: center;
}
#jesus {
	display: none;
}

@media (pointer: fine) {
	#cursor {
		display: block;
	}
	#heart {
		display: block;
	}
}
