body {
	background-color: white;
	margin: 0;
	font-family: 'Open Sans', sans-serif;
}

/*Styling for container holding circles*/
#container {
	max-width: 900px;
	margin: 20px auto;
	background-color: white;
}

.circle {
	width: 60px;
	height: 60px;
	margin: 15px;
	background: red;
	float: left;
	border-radius: 50%;
	transition: background 0.6s;
	-webkit-transition: background 0.6s;
	-moz-transition: background 0.6s;
}

h1 {
	color: white;
	text-align: center;
	background-color: #333;
	margin: 0;
	font-weight: normal;
	text-transform: uppercase;
	line-height: 1.1;
	padding: 20px 0;
}


#stripe {
	margin-top: 5px;
	background-color: #333;
	text-align: center;
	height: 30px;
	color: black;
}

button {
	background: #333;
	border: none;
	color: white;
	text-transform: uppercase;
	height: 100%;
	letter-spacing: 1px;
	font-size: inherit;
	transition: all 0.7s;
	-webkit-transition: all 0.7s;
	-moz-transition: all 0.7s;
	outline: none;
}

button:hover { 
    background-color: #3297FD;
    color: white;
}

span#guessDisplay {
	display: inline-block;
	width: 20%;
	color: white;
	font-size: inherit;
}

.selected {
	background-color: steelblue;
    color: white;
}

#colorDisplay {
	font-size: 150%;
	letter-spacing: 2px;
}

#gameMode {
	background-color: #333;
	outline: none;
	color: white;
	font-size: inherit;
	letter-spacing: 1px;
	height: 100%;
	border: none;
	transition: all 0.7s;
	-webkit-transition: all 0.7s;
	-moz-transition: all 0.7s;
	text-transform: uppercase;
}


#gameMode * {
	background-color: #333;
	outline: none;
	color: white;
	font-size: inherit;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#gameMode:hover { 
    background-color: #3297FD;
    color: white;
}

option:hover {
	background: red;
}

