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

#canvas1 {
	margin:  0 auto;
	background: #4d79bc;
	max-width: 100%;
	max-height: 100%;
	width:100%;
	display: block;
}

.game-wrap {
	position: relative;
}

.background {
	display: none;
}

.page-template-page-game #colophon,
.page-template-page-game #masthead {
	display: none;
}

.page-template-page-game .game-wrap {
	height: 100vh;
	display: flex;
	align-items: center;
}

button.close {
	position: absolute;
	z-index: 3;
	background: none;
	border-radius: 0;
	border: none;
	color: black;
	top: 0;
	right: 0;
	font-family: 'Press Start 2P';
	cursor: pointer;
}

.game-form h2 {
	text-align: center;
}

.page-template-page-game .game-form {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	padding: 25px;
	z-index: 2;
	transform: translate(-50%, -50%);
	border: 5px solid white;
	background: white;
	font-family: 'Press Start 2P';
	border: 3px solid black;
	color: black;
	width: 500px;
}
.game-form form {
	width: 100%;
	display: block;
}

.page-template-page-game .game-form input {
	font-family: 'Press Start 2P';
	border: 2px solid black;
	border-radius: 0;
	margin-bottom: 15px;
	font-size: 19px;
	width: 100%;
}
.page-template-page-game .game-form input.focused:focus {
	outline: none;
}
.page-template-page-game .game-form input.focused {
	border: 2px solid red;
}
.page-template-page-game .game-form input[type="submit"] {
	color: black;
	font-size: 19px;
	padding: 10px;
	cursor: pointer;
}
.page-template-page-game .game-form.show {
	display: block;
} 