html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow-y: hidden;
}
.canvas {
	background-image: url("./images/background.png");
	background-size: 100% 100%;
	position: absolute;
	z-index: -1;
	filter: blur(3px);
	-webkit-filter: blur(3px);
}
.hide {
	display: none;
}
.middle {
	z-index: 1;
	width: 100%;
	width: 100%;
}
.wall {
	position: absolute;
	z-index: 2;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.menu {
	display: flex;
	align-items: center;
	flex-direction: column;
	position: absolute;
}
.text {
	font-family: 'Faster One', cursive;
	color: #000080;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.title {
	font-size: 80px;
	margin-bottom: 30px;
}
.hs {
	font-size: 50px;
}
.button {
	background: #3377ff;
	font-size: 40px;
	margin-top: 20px;
	width: 325px;
	height: 55px;
	text-align: center;
	border: 8px solid #000080;
	border-radius: 25px;
	cursor: pointer;
}
.button:hover {
	background: #2165ed;
}
.side {
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.image1 {
	width: 28px;
	height: 55px;
	position: absolute;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.image2 {
	width: 50px;
	height: 40px;
	position: absolute;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.row {
	display: flex;
	flex-direction: row;
}
.margin {
	margin-right: 8px;
	margin-left: 8px;
}
.rules {
	font-size: 30px;
}
.background {
	background: #3377ff;
	border: 8px solid #000080;
	border-radius: 25px;
}