body {
  background-color: #232323;
  margin: 0;
  font-family: "Monserrat", "Avenir", sans-serif;
}

.square {
  background-color: green;
  padding-bottom: 30%;
  width: 30%;
  margin: 1.66%;
  float: left;
  border-radius: 15%;
  transition: background 0.6s;
  /* Browser Support */

  /* This is for Safari */
  -webkit-transition: background 0.6s;

  /* This is for Firefox */
  -moz-transition: background 0.6s;
}

.squares {
  max-width: 600px;
  margin: 20px auto;
}

h1 {
  color: white;
  text-align: center;
  background-color: steelblue;
  font-weight: normal;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
  padding: 20px 0;
}

.colorDisplay {
  font-size: 200%;
}

.message {
  display: inline-block;
  width: 20%;
}

.subHeader {
  background-color: white;
  height: 30px;
  text-align: center;
  color: black;
}

button {
  border: none;
  background: none;
  text-transform: uppercase;
  height: 100%;
  font-weight: 700;
  color: steelblue;
  letter-spacing: 1px;
  font-size: inherit;
  transition: all 0.3s;
  /* Browser Support */

  /* This is for Safari */
  -webkit-transition: all 0.3s;

  /* This is for Firefox */
  -moz-transition: all 0.3s;
  outline: none;
}

button:hover {
  color: white;
  background-color: steelblue;
}

.selected {
  background-color: steelblue;
  color: white;
}
