@charset "UTF-8";

html, body {
	font-family: arial, helvetica, sans-serif;
	margin: 0px;
	padding: 0px;
	width: 100%;
	min-width: 223px;
	background-color: steelblue;
}
a img {
	border: none;
}
h1 {
	width: 190px;
	margin: 0 auto;
	margin-top: 40px;
	margin-bottom: 25px;
}
#playing-field {
	width: 612px;
	height: 612px;
	margin: 0 auto;
	border: 1px solid black;
	margin-bottom: 60px;
}
.spaces {
	float: left;
	width: 200px;
	height: 200px;
	border: 2px solid black;
	background-color: darksalmon;
}
.spaces-white {
	background-color: white;
}
.spaces p, .spaces li {
	font-weight: bold;
	margin-right: 10px;
	font-size: 12px;
}
.spaces p {
	margin-left: 10px;
}
.spaces ul {
	padding-left: 20px;
}
.clear-left {
	clear: left;
}

@media only screen and (max-width: 640px) {
	#playing-field {
		border: 0px;
		width: 100%;
		margin-bottom: 50px;
	}
	.spaces {
		margin-top: 8px;
		padding-top: 0px;
		overflow: auto;
		border: 0px;
		width: 100%;
		height: auto;
		float: none;
		background-color: white;
	}
	.spaces-white {
		display: none;
	}
	.spaces p, .spaces li {
		font-size: 14px;
		font-weight: normal;
	}
	.spaces ul {
		padding-left: 40px;
	}
	.final-space {
		margin-bottom: 60px;
	}
}
