html {
	cursor: url(imagens/cursor.png) 30 30, auto;
}

body {
	width: 100%;
	height: 100dvh;
	margin: 0;
	padding: 0;

	background-image: url(imagens/bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.noz1 {
	width: 60px;
	height: 60px;
}

.noz2 {
	width: 80px;
	height: 80px;
}

.noz3 {
	width: 100px;
	height: 100px;
}

[id^="noz"] {
	display: block;
	transition: opacity 0.5s ease, transform 0.5s ease;
	will-change: transform, opacity;
}

[id^="noz"].collected {
	transform: scale(1.4) translateY(-20px);
	opacity: 0;
}

[id^="noz"].missed {
	transform: translateY(120px) rotate(20deg) scale(0.8);
	opacity: 0;
	transition-duration: 0.7s;
}

[id^="noz"][data-nivel="facil"].collected {
	transform: scale(1.7) translateY(-12px);
	transition-duration: 0.7s;
}

[id^="noz"][data-nivel="normal"].collected {
	transform: scale(1.4) translateY(-20px);
	transition-duration: 0.5s;
}

[id^="noz"][data-nivel="dificil"].collected {
	transform: scale(1.2) translateY(-8px);
	transition-duration: 0.35s;
}

[id^="noz"][data-nivel="facil"].missed {
	transform: translateY(160px) rotate(8deg) scale(0.85);
	transition-duration: 0.9s;
}

[id^="noz"][data-nivel="normal"].missed {
	transform: translateY(120px) rotate(20deg) scale(0.8);
	transition-duration: 0.7s;
}

[id^="noz"][data-nivel="dificil"].missed {
	transform: translateY(80px) rotate(30deg) scale(0.75);
	transition-duration: 0.45s;
}

.ladoA {
	transform: scaleX(1);
}

.ladoB {
	transform: scaleX(-1);
}

.painel {
	position: absolute;
	width: 190px;
	padding: 10px;
	left: 0px;
	background-color: rgba(62, 38, 8, 0.61);
	bottom: 0px;
	opacity: 0.8;
	width: max-content;
	border-radius: 0px 20px 20px 0px;

}

.container-painel {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.vidas {
	float: left;
}

.cronometro {
	color: white;
	float: left;
	width: max-content;
	font-size: 40px;
	font-weight: bold;
}

.game_image {
	width: 500px;
	height: auto;
}