body {
  background-color: #ddd;
  margin: 0;
  padding: 0;
}

.logo {
  z-index: 2;
  font-family: Futura-pt, Arial;
  text-transform: uppercase;
  font-size: 64px;
  width: 100%;
  height: 100%;
  display: inline-block;
  box-sizing:border-box;
  -moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
  white-space: nowrap;
  color: white;
  border: solid 7px currentColor;
  position: absolute;
  padding: 5% 0px 0px 5%;
  -webkit-transition:background 1.5s;
  -moz-transition:background 1.5s;
  transition:background 1.5s;
}

.logo-background{
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(9, 97, 197), rgb(0, 208, 157), rgb(0, 208, 157)) no-repeat;
}

.logo-win {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #83a4d4 10%, #b6fbff 90%); /* W3C */
}

.logo-lose {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #E55D87 10%, #5FC3E4 90%); /* W3C */

}

.square{
  margin: 17px 0px 0px 0px;
  display: inline-block;
  text-align: center;
  width:100px;
  height: 100px;
  line-height: 100px;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition:background-color 0.5s;
  -moz-transition:background-color 0.5s;
  transition:background-color 0.5s;
}

.selected{
  background-color: rgba(255, 255, 255, 0.2);
  cursor:pointer;
}

.current{
  background-color: rgba(255, 255, 255, 0.4);
}

.failed{
  background-color: rgba(250, 126, 117, 0.7);
}

.victory{
  background-color: rgba(105, 255, 200, 0.7);
}

#count{
  position: absolute;
  right: 20px;
  up: 20px;
}

.game-instructions{
  background: #fff;
  position: absolute;
  z-index: 4;
  font-family: Futura-pt, Arial;
  font-size: 13px;
  right: 20px;
  top: 20px;
  padding: 20px 20px 20px 20px;
  border-radius: 3px
  width: 200px;
}

#headline-container, #links-container{
  text-align: center;
}

.game-instructions img{
  max-width: 100px;
}

.game-instructions h3{
  color: #39e5bd;
  display: block;
  text-transform: uppercase;
}

.game-instructions ol{
  margin-left: 20px;
  padding-left: 0px;
}

.game-instructions ol li{
  line-height: 20px;
  color: #39e5bd;
}

.game-instructions a{
  padding-top: 5px;
  display: block;
  text-decoration: none;
  color: #39e5bd;
  -webkit-transition:color 0.5s;
  -moz-transition:color 0.5s;
  transition:color 0.5s;
}

.game-instructions a:hover{
  color: #25b392;
}
