h1, h3, footer {
  text-align: center;
  font-family: 'Special Elite', cursive;
}

.gameboard {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 52%;
  font-size: 0px;
}

.column {
  margin: 1px;
  width: 125px;
  height: 500px;
  display: inline-block;
}

.cell {
  box-sizing: border-box;
  border: 2px solid white;
  width: 125px;
  height: 125px;
  background-color: lightblue;
}

.trump {
  background: url('../images/trump.gif');
  background-color: blue;
  background-repeat: no-repeat;
  background-position: center;
  /*transition: ease-in 1s;*/
}

.putin {
  background: url('../images/putin.gif');
  background-color: red;
  background-repeat: no-repeat;
  background-position: center;
  /*transition: ease-in 1s;*/
}
