* {
	margin: 0;
	padding: 0;
}

.container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100vh;
	font-family: Verdana, Geneva, sans-serif;
}

.game {
	display: none;
}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2) {

  	.errorMessage {
  		display: none;
  	}


	.game {
		display: block;
		margin: 100px;
		width: 100%;
		height: 100%;
	}

	.informationBlock {
		margin-top: 100px;
		display: flex;
		flex-wrap: wrap;
	}

	.informationBlock p {
		font-size: 30pt;
		color: 	#C0C0C0;
		margin-bottom: 10px;
	}

	.informationBlock p:nth-child(2n+1) {
		flex: 80%;
	}

	.informationBlock p:nth-child(2n) {
		flex: 20%;
	}

	.timeInfo {
		width: 80%;
	}

	.stepsInfo {
		width: 20%;
	}

	.timeInfo img, .stepsInfo img {
		width: 50px;
	}

	.timeInfo span, .stepsInfo span {
		font-size: 40pt;
		font-weight: bold;
		color: #696969;
		margin-left: 10px;
	}

	.gameField {
		width: 840px;
		height: 840px;
		margin: 100px 0;
		/*display: flex;
		flex-wrap: wrap;*/
		position: relative;
		background-color: #FFFACD;
	}

	.puzzle {
		margin: 5px;
		width: 200px;
		height: 200px;
		background-color: #4A90E2;
		color: #FFF;
		border-radius: 20px;
		display: inline-flex;
		justify-content: center;
		align-items: center;
		font-size: 80pt;
		font-weight: bold;
		position: relative;
	}

	.buttons {
		width: 100%;
		height: 300px;
	}

	button {
		width: 100%;
		height: 150px;
		margin: 20px 0;
		border-radius: 20px;
		background-color: inherit;
		border-color: #00cccc;
		border-width: 5px;
		color: #00cccc;
		font-size: 40pt;
		font-weight: bold;
	}

	.tappedButton {
		background-color: #00cccc;
		color: #404040;
	}

	.tappedPuzzle {
		box-shadow: inset 0px 0px 20px 10px  #1858cd;
	}

}
