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

/* The container controls the size of the box that contains the squares */
#container {
	margin: 20px auto;
	width: 50%;
}

.square {
	width: 30%;
	background: purple;
	/* Square doesn't show up on page so padding added */
	padding-bottom: 30%;
	float: left;
	margin: 1.66%;
	border-radius: 20%;
	transition: background 0.5s;
	-webkit-transition:background 0.5s;;
	-moz-transition:background 0.5s;;
}

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

#winningColour {
	font-size: 200% ;
}

#navMenu {
	background-color: white;
	height: 30px;
	text-align: center;
	color: black;
}

.active {
	color: white;
	background-color: #49ba86;
}

button {
	border: none;
	background: none;
	text-transform: uppercase;
	font-size: inherit;
	font-weight: 700;
	letter-spacing: 1.2;
	height: 100%;
	color: #49ba86;
	transition: all 0.3s;
	-webkit-transition:all 0.5s;;
	-moz-transition:all 0.5s;;
	outline: none;
}

button:hover {
	color: white;
	background-color: #49ba86;
}

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