@import url('https://fonts.googleapis.com/css?family=Muli');

body {
  background-color: #232323;
  margin: 0px;
  padding: 0px;
  border: 0px;
  font-family: Muli;
}

#titleBanner {
  margin: 0px;
  padding: 0px;
  background-color: #5599ff;
  text-align: center;
  color: white;
  transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
}

h1 {
  margin: 0px;
  padding: 0px;
  text-transform: uppercase;
  font-weight: normal;
  line-height: 1.1;
  padding: 20px 0;
}

#colorDisplay {
  font-weight: bold;
  font-size: 1.5em;
  text-transform: uppercase;
  padding: 0px;
  margin: 0px;
}

#menubar {
  padding: none;
  margin: none;
  border: none;
  background-color: white;
  color: #5599ff;
  height: 30px;
  text-align: center;
}

button {
  border: none;
  margin: none;
  padding: none;
  color: #5599ff;
  outline: none;
  background-color: inherit;
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  font-weight: bold;
  height: 100%;
  letter-spacing: 1px;
  transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

button:hover {
  background-color: #5599ff;
  color: white;
}

.spacer {
  background-color: inherit;
  display: inline-block;
  width: 20%;
}

.selected {
  background-color: #5599ff;
  color:white;
}

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

.square {
  float: left;
  width: 30%;
  padding-bottom: 30%;
  background-color: purple;
  margin: 1.66%;
  border-radius: 10%;
  transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
}

#message {
  text-align: center;
  color: white;
  font-size: 2em;
  max-width: 600px;
  margin: 0 auto; 
}