html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
	display: flex;
	align-content: center;
	justify-content: center;
	z-index: -5;
}
.canvas {
	background-color: #e1f1dd;
	position: absolute;
	z-index: -3;
}
.page {
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	flex-direction: column;
}
.gameOverScreen {
	display: flex;
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: black;
	align-content: center;
	justify-content: center;
	z-index: -5;
	transition: margin-top 2s;
	transition-delay: 1s;
	transition-timing-function: ease-in;
}
.goText {
	color: red;
	font-family: 'Tourney', cursive;
	font-size: 150px;
	margin-top: 50vh;
	line-height: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.shopC {
	width: 100%;
	height: 100%;
	z-index: -2;
	position: absolute;
	display: flex;
}
.text {
	font-family: 'Tourney', cursive;
	font-size: 50px;
	height: 60px;
	color: #32464e;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.title {
	font-family: 'Tourney', cursive;
	font-size: 66px;
	height: 100px;
	color: #32464e;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.button {
	font-family: 'Tourney', cursive;
	font-size: 45px;
	border: 8px solid #766161;
	border-radius: 38px;
	background-color: #cdc7be;
	color: #32464e;
	width: 322px;
	height: 76px;
	text-align: center;
	line-height: 76px;
	margin-top: 20px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: pointer;
	transition: background-color 0.8s;
}
.button:hover {
	background-color: #9a8f7e;
}
.shop {
	background-image: url("./images/shop.png");
	background-size: 100% 100%;
	width: 400px;
	height: 475px;
	align-self: center;
	margin-left: -342px;
	transition: margin-left 0.6s;
	flex-direction: column;
}
.shop:hover {
	margin-left: -16px;
}
.shopRow {
	flex-direction: row;
	display: flex;
	margin-left: 27px;
	justify-content: space-between;
	width: 274px;
}
.shopFirstRow {
	margin-top: 25px;
}
.gunShop {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-right: 4px;
}
.shopImage {
	display: flex;
	margin-left: -12px;
	align-self: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.shopText {
	font-family: 'Tourney', cursive;
	font-size: 28px;
	height: 45px;
	line-height: 42px;
	color: #32464e;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.shopBuy {
	font-family: 'Tourney', cursive;
	font-size: 18px;
	height: 18px;
	line-height: 20px;
	margin-top: 10px;
	border: 2px solid #805500;
	border-radius: 8px;
	background-color: yellow;
	color: #805500;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	transition: background-color 0.8s;
}
.shopBuy:hover {
	background-color: #cccc00;
}
.audio {
	width: 85px;
}
.container {
	background-color: #c69b86;
	border: 8px solid #9c6549;
	width: 980px;
	height: 337px;
}
.row {
	display: flex;
	flex-direction: row;
}
.audioImage1 {
	width: 70px;
	height: 70px;
	margin-top: 4px;
}
.audioImage2 {
	width: 60px;
	height: 60px;
	margin-top: 6px;
}
.hide {
	display: none;
}
.small {
	font-size: 35px;
	height: 214px;
	line-height: 155%;
	margin-left: 20px;
}
.space {
	margin-bottom: 10px;
}
.space2 {
	margin-bottom: 8px;
	margin-left: 20px;
}
.space3 {
	margin-bottom: 20px;
}
.spaceLeftRow {
	margin-right: 25px;
}