#canvas-game {
	margin: 0 auto;
	text-align: left;
	width: 100%;
	margin-top: 20px;
	border: Solid 1px #ebe5e5;
	height: 385px;
	position: relative;
}

#game-statistic {
	margin: 0 auto;
	text-align: left;
	width: 100%;
	margin-top: 20px;
}


#statistic-left, #statistic-right {
	font-style: italic;
	font-size: 16px;
	float: left;
}

#statistic-right {
	float: right;
}

#canvas-game .bold-text {
	font-weight: bold;
}

#canvas-game .clear {
	clear: both;
}

#canvas-game .box-picture {
	float: left;
	width: 150px;
	height: 100px;
	border: solid 1px #ebe5e5;
}

#canvas-game .box-picture>img {
	width: 150px;
	height: 100px;
}

#canvas-game .box-cover-wrapper {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 100;
}

#canvas-game .box-cover {
	width: 150px;
	height: 100px;
	background: url(images/logo-ask-h.png);
	background-size: cover;
	border: solid 1px #ebe5e5;
	float: left;
	cursor: pointer;
}

#game-message {
	margin: 0 auto;
	font-size: 20px;
	background: #f7f5b5;
	padding: 15px;
	border: solid 1px #ccc;
	border-radius: 5px;
	width: 612px;
	display: none;
}

#btnRestart {
	padding: 15px;
	font-weight: bold;
	text-align: center;
	background: #043255;
	text-decoration: uppercase;
	margin-top: 20px;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

/**** IF SCREEN SIZE IS NO LARGER THAN 640px ****/
@media (max-width: 640px) {
	#canvas-game {
		width: 385px;
		height: 348px;
	}

	#canvas-game .box-picture,
	#canvas-game .box-picture>img,
	#canvas-game .box-cover {
		width: 75px;
		height: 56px;
	}

	#canvas-game .box-cover {
		background: url(images/logo-ask-h.png);
		background-size: cover;
	}

	#game-statistic {
		margin-top: 20px;
	}

	#game-message, #game-statistic {
		width: 385px;
	}

}

/**** IF SCREEN SIZE IS NO LARGER THAN 320px ****/
@media (max-width: 320px) {
	#canvas-game {
		width: 156px;
		height: 390px;
	}

	#canvas-game .box-picture,
	#canvas-game .box-picture>img,
	#canvas-game .box-cover {
		width: 50px;
		height: 38px;
	}

	#canvas-game .box-cover {
		background: url(images/logo-ask-h.png);
		background-size: cover;
	}

	#game-statistic {
		margin-top: 20px;
	}

	#game-message, #game-statistic {
		width: 156px;
	}

	#statistic-left, #statistic-right {
		float: none;
	}
}