body {
	background-color: #232323;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
}

#mid {
	background-color: white;
	text-align: center;
	color: black;
	height: 30px;
}
#fBar {
	max-width: 600px;
	margin: 20px auto;
}

.square {
	width: 30%;
	background-color: purple;
	padding-bottom: 30%;
	float: left;
	margin: 1.66%;
	border-radius: 15%;
	transition: background 0.6s;
	-webkit-transition: background 0.6s;
	-moz-transition: background 0.6s;
}

h1 {
	color: white;
	text-align: center;
	line-height: 1.1;
	background-color: steelblue;
	font-weight: normal;
	margin: 0;
	padding: 20px 0;
	transition: background-color 0.6s;
}

.selected {
	background-color: steelblue;
	color: white;
}

#colorDisplay {
	font-size: 200%;
}

button {
	border: none;
	background:none;
	text-transform: uppercase;
	height: 100%;
	font-weight: 700;
	color: steelblue;
	letter-spacing: 1px;
	font-size: inherit;
	transition: all 0.3s;
	-webkit-transition: all 0.6s;
	-moz-transition: all 0.6s;
	outline: none;
/*! border-bottom-left-radius: 10px; */ /*! border-bottom-right-radius: 10px; */
	margin: 0 -5px;
	padding: 0 10px;
}

#message {
	display: inline-block;
	width: 20%;

}

button:hover {
	color: white;
	background-color: steelblue;
}