body {
	background-color: #d5d7d8;
	height: 100vh;
	margin: 0;
	position: relative;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	width: 100vw;
}
button, .square {
	cursor: pointer;
}
.container {
	display: flex;
	height: 100%;
	min-height: 500px;
	flex-direction: column;
	justify-content: center;
	margin: 0 auto;
	max-width: 400px;
	text-align: center;
}
.prompt {
	font-size: 1.4rem;
}
button {
	background-color: transparent;
	border: 1px solid #000;
	border-radius: 20px;
	padding: 10px;
	font-size: 0.75rem;
	text-transform: uppercase;

}
button:hover {
	border-color: #22466b;
	color: #22466b;
}
.gameMode {
	margin-bottom: 20px;
	position: relative;
}
.declarePlayer {
	background-color: rgba(113, 193, 232, 0.90);
	color: #11224c;
	font-size: 2rem;
	margin: 0;
	padding: 30px 0;
	position: absolute;
	text-transform: uppercase;
	top: 127px;
	width: 100%;
	z-index: 10;
}
#board {
	max-width: 400px;
	margin-bottom: 20px;
}
.row {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	width: 100%;
}
.square {
	display: flex;
   	flex-direction: row;
   	align-items: center;
   	justify-content: center;
	
	background-color: #f9f9f9;
	border-radius: 10px;
	height: 100px;
	margin: 2px;
	position: relative;
	text-align: center;
	width: 30%;
}
.gamepiece {
	display: block;
	font-size: 5rem;
	position: absolute;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.X {
	color: #F05945;
}
.O {
	color: #167fb5;
}