.game-grid{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.game-grid .game-item {
  padding: 10px;
  margin: 10px auto;
  text-align: center;
  font-weight:bold;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  color:#808080;
  border: 3px solid #e9e9e9;
}
.game-grid .game-item:hover {
  border: 3px solid #e74131;
}

.game-item .game-thumb img {
  border-radius: 5px;
}

.game-item .game-data .game-title {
  text-align: center;
  font-size: 1em;
  font-weight: 700;
 }
.game-item .game-data .game-title a {
  color: #e74131;
  text-decoration: none;
  box-shadow: none;
}
.game-item .game-data .game-title a:hover {
  color: #6c6c6c;
}
.game-item .game-data .game-stats {
  text-align: left;
}
.game-item .game-data .game-stats .game-rating {
  width: 100px;
  float:left;
}
.game-item .game-data .game-stats .game-plays {
  float: right;
  font-size: 12px;
  font-weight:normal;
}