body {
	background-color: #232323;
	margin: 0;
	font-family: "Montserrat", "Avenir";
}

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

#container {
	max-width: 600px;
	margin: 20px auto;
}

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

#rgbUpdate {
	font-size: 200%;
	font-family: "Montserrat", "Avenir";
	text-transform: uppercase;
}
#stripes {
	background-color: white;
	height: 30px;
	text-align: center;
	color: black;
}
#message {
	display: inline-block;
	width: 20%;
	font-style: "Montserrat", "Avenir";

}
button {
	border: none;
	background: none;
	font-family: "Montserrat", "Avenir";
	text-transform: uppercase;
	height: 100%;
	font-weight: 700;
	color: steelblue;
	letter-spacing: 1px;
	font-size: inherit;
	transition: all 0.4s;
	--webkit-transition : all 0.4s;
	--moz-transition : all 0.4s;
	outline: none;
}

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

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