body{
	background:#232323;
	margin:0;
	font-family: 'Montserrat', sans-serif;
}

h1{
	color:white;
	text-align:center;
	background:steelblue;
	margin:0;
	font-weight:normal;
	text-transform: uppercase;
	line-height: 1.1;
	padding: 20px 0;
}

#colorDisplay{
	font-size:200%;
}
.square{
	width:30%;
	background:purple;
	float: left;
	padding-bottom:30%;
	margin:1.66%;
	transition: background .6s;
	-webkit-transition: background 0.6s;
	-moz-transition: background 0.6s;
	border-radius:15%;
}

#container{
	max-width: 600px;
	margin:20px auto;
}

#stripe{
	background:white;
	height:30px;
	text-align:center;
}

.selected{
	background:steelblue;
	color:white;
}

#message{
	display:inline-block;
	width:20%;
}
button{
	border:none;
	background:none;
	text-transform: uppercase;
	height:100%;
	color:steelblue;
	font-weight: 800;
	letter-spacing: 1px;
	font-size:inherit;
	outline:none;
	transition: all 0.3s;
	-webkit-transition: background 0.3s;
	-moz-transition: background 0.3s;
}

button:hover{
	color:white;
	background:steelblue;

}