body{
	background-color: #232323;
	box-sizing: border-box;
}
html,body {
	/*to help remove white-space at the top of the page and sides*/
	margin: 0px;
	padding: 0px;	
}

button {
	border: none;
	font-family: 'ZCOOL QingKe HuangYou', cursive;
	padding: 6px;
	font-size: 15px;
	background-color: transparent;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 2px;
	color: steelblue;
	/* two arguements below are (what) we want to animate and how long we want it to take*/
	transition: all 0.5s;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
}
button:hover {
	color: white;
	background-color: steelblue;
}

#message {
	display: inline-block;
	width: 20%;
}
.square{
	width: 30%;
	margin: 1.66%;
	background-color: cornflowerblue;
	/*we set this attribute due to the divs being collapsed..as they contain no content
	could have used padding-top also*/
	padding-bottom: 30%;
	float: left;
	border-radius: 13% 13% 13% 13%;
	transition: background 0.6s;
	/*below webkit is an engine that some browsers use..the cose is used for browser support*/
	-webkit-transition: background 0.6s;
	-moz-transition: background 0.6s;
}
.container{
	/*below the 20px is for the top and bottom and auto is for the left and right*/
	margin: 20px auto;
    max-width: 600px;
}
h1{
	color: #052962;
	/*below helps remove space at top of the page in this situation*/
	margin-top: 0;
	margin-bottom: 0;
	font-family: 'Bree Serif', serif;
	font-weight: lighter;
	line-height: 1.1;
}
#stripe {
    background: white;
    height: 30px;
    text-align: center;
    color: black;
}
.selected {
	background-color: steelblue;
	color: white;
}
.header-container {
	background-color: #F1C517;
	text-align: center;
	height: auto;
	padding: 8px;
}
span#colorDisplay {
	display: block;
	text-transform: uppercase;
	font-weight: bold;
	word-spacing: 0.5em;
	font-size: 45px;
}