body {
	background-color: rgb(42, 56, 79);

}

#menuBar {
	background-color: rgb(239, 241, 244);
}

#gameStatusLabel {
	text-align: center;
}

#resetButton {
	cursor:pointer;
}


.gridStyle {
	background-color: rgb(239, 241, 244);
	/*background-color:rgba(43,87,151,.85);*/
	/*display:inline-block;*/
	/*cursor:pointer;*/
	color: rgba(43,87,151, .85);
	font-family:Arial;
	font-size:20px;
	font-weight: 800;
	/*padding:3px 15px;*/
	text-decoration:none;
	text-align: center;
}


.selectedButton {
	background-color:rgba(43,87,151,.85);
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;

	font-size:20px;
	padding:0px 15px;
	text-decoration:none;
	/*border-color:red;*/
	border-radius: 15px;
	/*border: 2px solid red;*/
}
/*.menuButton:hover {
	background-color:rgba(43,87,151,.3);
}*/

.blinkButton {
	/*background-color: #fffc7c;*/

    animation:2s blinker linear infinite;
    -webkit-animation:2s blinker linear infinite;
    -moz-animation:2s blinker linear infinite;

     color: #e74c3c;
    }

    @-moz-keyframes blinker {  
     0% { opacity: 1.0; }
     50% { opacity: 0.0; }
     100% { opacity: 1.0; }
     }

    @-webkit-keyframes blinker {  
     0% { opacity: 1.0; }
     50% { opacity: 0.0; }
     100% { opacity: 1.0; }
     }

    @keyframes blinker {  
     0% { opacity: 1.0; }
     50% { opacity: 0.0; }
     100% { opacity: 1.0; }
}

.menuButton {
	cursor:pointer;
}

.menuButton:active {
	position: relative;
	top:1px;
}


.jumbotron {
	color: white;
	/*This makes all the text and icons that color in the JT*/
	background-color: rgba(43,87,151, .85);
	text-align: center;
	height: 200px;
	/*white-space: 1px;*/
	/*line-height: .9;*/
	/*vertical-align: center;*/
}

.jumbotron h2 {
	line-height: 40px;
	font-size: 50px;
	/*vertical-align: center;*/
}

.jumbotron p {
	/*vertical-align: center;*/
	font-size: 30px;
	font-weight: 500;
	line-height: 15px;
}

.colorButton {
	margin: 5px;
	height: 175px;
	width: 175px;
	border-radius: 25px;
	/*Instructor used the below to slow the color transitions*/
	transition: background 0.6s;
	/*The simple transition doesn't work in all browsers*/
	/*For more cross-browser support, below for Firefox and iOS*/
	-webkit-transition: background 0.6s;
	-moz-transition: background 0.6s;
	
}	

.buttonRow {
	align-content: center;
	max-width: 600px;
	/*That got it centered!!!*/
    position: relative;
    margin: 0 auto;
}

/*Notes from class:*/

/*He styles squres via a CSS style. Each square is a .square Div*/
/**/
.square {
	width: ;
	background: purple;
	padding-bottom: 30%;
	float: left;
	margin: 1.66%;
}

/*He then updated the style of the #container */
/*Got it centered. Max width of buttonRow.*/
#container {
	/*max-width: 700px;*/
	/*margin: 0 auto;*/
	/*This means 0 top and bottom, auto left and right*/
}

/*He didn't make buttons, just Divs that listen for clicks*/

