body {
	width: 70%;
	height: 100vh;
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-family: 'Turret Road', cursive;
	text-align: center;
	background: #666;
	color: #000;
}
h1 {
	font-size: 3rem;
}
h2 {
	font-size: 2.5rem;
}
h3 {
	font-size: 2rem;
}
.score {
	margin: auto;
	display: flex;
	justify-content: space-around;
	border: 4px black dashed;
}
.button-section {
	display: flex;
	justify-content: center;
}
p {
	font-size: 1.5rem;
}
.weapon {
	width: 300px;
	height: auto;
}
.weapon:hover {
	cursor: pointer;
	background-color: #888;
}
button {
	background: transparent;
	border: dotted black 4px;
}
button:hover {
	background-color: #888;
}
@media screen and (max-width: 768px) {
	.weapon {
		width: 250px;
	}
}
@media screen and (max-width: 414px) {
	h1 {
		font-size: 2rem;
	}
	h2 {
		font-size: 1.5rem;
	}
	h3 {
		font-size: 1.25rem;
	}
	.weapon {
		width: 100px;
	}
}
