body {
	color: white;
	background-color: #111;
	font-family: 'Poppins';
	font-size: 30px;
	height: 100vh;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
div.main {
	font-size: 1.4em;
	width: 90%;
	max-width: 700px;
	margin: 0 0.5em;
	height: 70vh;
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	grid-template-rows: repeat(2, 1fr);
}
body > h1 {
	font-family: 'Pacifico';
	font-weight: 400;
	font-size: 3em;
	margin: 0.4em 0;
}
canvas#hold {
	grid-column: 1 / 1;
	grid-row: 1 / 1;
	cursor: pointer;
}
canvas#game {
	grid-column: 2 / 2;
	grid-row: span 2;
}
canvas#info {
	grid-column: 3 / 3;
	grid-row: 1 / 1;
	margin: 0 0.4em;
}
div.game_info {
	grid-column: 3 / 3;
	grid-row: 2 / 2;
	font-size: 0.6em;
	text-align: center;
	margin: 0 0.4em;
}
div.game_info h4, div.game_info h3, div.game_info h5 {
	margin: 0.1em 0;
}
div.game_info h3 {
	font-size: 1.7em;
}
div.game_info h5 {
	color: gray;
}
div.startGame, div.gameOver {
	/* display: none; */
	position: absolute;
	height: 100vh;
	width: 100vw;
	background-color: #111;
	display: flex;
	align-items: center;
	justify-content: center;
}
div.startGame div, div.gameOver div {
	position: absolute;
	min-height: 50vh;
	max-height: 100vh;
	min-width: 60vw;
	max-width: 100vw;
	padding: 1.5em;
	background-color: #00000088;
	border-radius: 0.4em;
	text-align: center;
	border: 0.2em white solid;
}
div.startGame h1 {
	font-size: 4em;
	font-family: 'Pacifico';
	font-weight: 400;
	text-decoration: underline;
	margin: 0.1em auto;
	line-height: 1.1em;
}
div.startGame h2 {
	margin: 0.1em auto;
	font-size: 0.8em;
}
div.startGame h3 {
	font-size: 0.9em;
	margin: 0.1em auto;
}
div.startGame ul {
	display: none;
	margin: 0.2em auto;
	list-style-type: none;
	padding: 0;
}
div.startGame ul li {
	margin: 0.2em auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
div.startGame p {
	font-size: 0.6em;
	margin: 0.5em auto;
}
button {
	font-family: 'Poppins';
	background-color: #111;
	font-size: 1.8em;
	color: white;
	border-radius: 0.1em;
	outline: none;
	border: 5px white solid;
	cursor: pointer;
	margin: 0.5em auto;
}
button:hover {
	background-color: #333;
}
div.gameOver {
	display: none;
}
div.gameOver div {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
a {
	color: gray;
	text-decoration: none;
}
a:hover {
	color: purple;
}
footer p {
	margin: 0.4em auto;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 0.9em;
	}
	div.startGame {
		font-size: 1.5em;
	}
}
span.key {
	border: 1px solid white;
	border-radius: 4px;
	min-width: 1.3em;
	display: inline-block;
	padding: 2px;
	margin: 0 2px;
}
::selection {
	background-color: #bbb;
}
.restart {
	color: #aaa;
	font-size: 1.5em;
}