@media screen and (max-width: 1000px)  {
	.F5 {
        font-size: 0.7rem !important;
		width: 110px !important;
    }
	.painel {
		width: 150px !important;
		padding: 5px !important; 
	}
	.cronometro {
		font-size: 12px !important; 
	}
	#v1, #v2, #v3, #v4, #v5 {
		width: 15%;
	}
	.reiniciar {
		padding: 5px !important;
	}
	.select {
		padding: 3px !important;
		border-radius: 3px !important;
	}
	.mosquito1 {
		width: 40px !important;
		height: 40px !important;
	}
	
	.mosquito2 {
		width: 55px !important;
		height: 55px !important;
	}
	
	.mosquito3 {
		width: 70px !important;
		height: 70px !important;
	}

	#vitoria,
	#gameover,
	.imagem {
		background-size: 40% !important;
	}
	#chucknorris{
		background-size: 30% !important;
	}
}

@media screen and (max-width: 600px)  {
	body {
		background-image: url(../imagens/bgV.webp) !important;
	}
	#vitoria,
	#chucknorris,
	#gameover,
	.imagem {
		background-size: 80% !important;
	}
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
	width: 100%;
	height: 100%;
	cursor: url(../imagens/raquete.webp) 25 25, auto;
}

body {
	background-image: url(../imagens/bgH.webp);
	background-repeat: no-repeat;
	background-size:cover;
	width: 100%;
	height: 100%;
}

.superior {
	width: 100%;
	height: 80%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.inferior {
	width: 100%;
	height: 20%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.imagem {
	height: 100%;
	width: 50%;
	background-image: url(../imagens/game.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 70%;
}

.select {
	padding: 5px;
	border-radius: 5px;
}

.iniciar {
	color: #fff;
	background-color: blue;
	cursor: pointer;
	border-radius: 5px;
	padding: 5px;
} 

#vitoria {
	background-image: url(../imagens/vitoria.webp);
	background-position: center;
	background-size: 80%;
}

#chucknorris {
	background-image: url(../imagens/trofeu.webp);
	background-position: center;
	background-size: 70%;
}

#chucknorris img {
	border-radius: 20px;
}

#gameover {
	background-image: url(../imagens/game_over.webp);
	background-position: center;
	background-size: 80%;
}

.painel {
	position: absolute;
	width: 230px;
	padding: 10px;
	border-radius: 0 5px 0 0;
	left: 0px;
	bottom: 0px;
	background-color: #fff;
	opacity: 0.7
}

.cronometro {
	font-size: 20px;
	font-weight: bold;
}

.mosquito1 {
	width: 70px;
	height: 70px;
}

.mosquito2 {
	width: 90px;
	height: 90px;
}

.mosquito3 {
	width: 110px;
	height: 110px;
}

.ladoA {
	transform: scaleX(1);
}

.ladoB {
	transform: scaleX(-1);
}

#msg {
	font-family: "Courier New";
	font-size: 24px;
	color: red;
	text-shadow: 3px 3px black;
	text-align: center;
	font-weight: bold;
}

.F5 {
	position: absolute;
    bottom: 0px;
	right: 0px;
	width: 150px;
	border: 1px solid black;
    color: white;
    background-color: #60abd4da;
    padding: 5px;
	border-radius: 5px 0 0 0; 	
}

