* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

@font-face {
	font-family: star-wars-font;
	src: url("../fonts/starjout-webfont.woff");
}

body {
	background-image: url("../img/bg.jpeg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
	width: 100vw;
	cursor: none;
	font-family: "star-wars-font", cursive;
	color: cyan;
	user-select: none;
}

img {
	width: 100%;
	height: 100%;
	user-select: none;
}

.menupage {
	position: fixed;
	height: 100vh;
	width: 100vw;
	background-color: black;
	background-image: url("../img/star_wars_logo_PNG23.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 300px;
	z-index: 2;
	cursor: default;
	transition: all 0.1s ease;
}

.menupage .playbtn {
	position: fixed;
	top: 75%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 1.5rem;
	padding: 5px 10px;
	border: 3px solid cyan;
	cursor: pointer;
	transition: all 0.1s ease;
}

.menupage .playbtn:hover {
	padding: 15px;
}

.cursor {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 40px;
	width: 40px;
	z-index: 1;
	pointer-events: none;
}

.targetbox {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 100px;
	width: 100px;
	z-index: 0;
	transition: all 0.2s ease;
}

.score {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 4rem;
	opacity: 0.7;
}

.timer {
	position: fixed;
	top: 0%;
	right: 0%;
	margin: 20px;
	font-size: 2rem;
}

.highscore {
	text-transform: uppercase;
	position: fixed;
	bottom: 0%;
	right: 0%;
	margin: 20px;
}
.target {
	float: left;
	width: 100%;
	margin-right: -100%;
	position: relative;
	z-index: 1;
	transition: all 0.1s ease;
}

.explosion {
	float: right;
	opacity: 0;
	transition: all 0.5s ease;
}
