@font-face
{
  src: url('../fnt/Nunito.ttf');
  font-family: 'Nunito';
}

body
{
  background-color: #4baabb;
  animation: bg 60s infinite;
  font-family: 'Nunito', Tahoma, Geneva, Verdana, sans-serif;
}

#wrapper
{
  margin-top: 20px;
  padding: 20px;
}

.list-header
{
  font-size: 25px;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 20px;
  text-shadow: #00000033 1px 1px;
  text-align: center;
  font-weight: bold;
}

.game-list
{
  padding: 5px;
  margin-bottom: 30px;
  text-align: center;
}

.game-list img
{
  margin-right: 20px;
  margin-bottom: 20px;
  display: inline-block;
  width: 200px;
  height: 200px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
}

.game-list img#hero
{
  width: 300px;
  height: 300px;
}

.game-list img:hover
{
  opacity: 0.8;
  transform: scale(1.05);
  transition: all 0.2s ease-in-out;
}

@keyframes bg
{
  0%
  {
    background-color: #47af6a;
  }

  25%
  {
    background-color: #4baabb;
  }

  50%
  {
    background-color: #4b53ca;
  }

  75%
  {
    background-color: #9351be;
  }

  100%
  {
    background-color: #47af7b;
  }
}