body {
	background-color: #232323;
	margin: 0;
	font-family: "arial","Avenir";
}

.square {
	width: 30%;
	margin: 1.66%;
	background-color: purple;
	padding-bottom: 30%;
	float: left;
	border-radius: 15%;
	transition: background 0.6s;
	-webkit-transition: background 0.6s;
	-moz-transition: background 0.6s;
}

#container {
	max-width: 500px;
	margin: 20px auto;
}

h1 {
	color: white;
	line-height: 1.1;
	font-weight: normal;
	text-align: center;
	background-color: steelblue;
	margin: 0;
	text-transform: uppercase;
	padding: 20px 0;
}
#colorDisplay{
	font-size: 200%;
}

#message {
	display: inline-block;
	width: 20%;
}

.tryAgain{
	color: red;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: inherit;
	transition: all .25s;
	-webkit-transition: all .25s;
	-moz-transition: all .25s;
	outline: none;
}
.correct{
	color: green;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: inherit;
	transition: all .25s;
	-webkit-transition: all .25s;
	-moz-transition: all .25s;
	outline: none;
}

#stripe {
	background-color: white;
	height: 30px;
	text-align: center;
	color: #232323;
}

.selected {
	background-color: steelblue;
	color: white;
}

button {
	border: none;
	background: none;
	text-transform: uppercase;
	height: 100%;
	font-weight: 800;
	color: steelblue;
	letter-spacing: 2px;
	font-size: inherit;
	transition: all .25s;
	-webkit-transition: all .25s;
	-moz-transition: all .25s;
	outline: none;
}

button:hover {
	color: white;
	background: steelblue;
	cursor: pointer;
}