
.container {
  height: 100vh;
  width: 100vw;
  background: url('/static/img/index_bg.png') no-repeat center top;
  background-size: 100% 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.games {
  flex: 1;
  overflow-y: auto;
  /* margin: 0 15vw; */
  padding: 12vh 0 0 0;
  padding-right: 1vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 5vw;
}
.games .game-item {
  /* width: 37vw; */
  height: 22.5vh;
}
.games .game-img {
  width: auto;
  height: 70%; 
}
.game-title {
  line-height: 2;
  padding-left: 4vw;
  text-align: center;
  font-size: 14px;
  color: #fff;
  text-shadow: 2px 4px 4px #339627;
  /* -webkit-text-stroke: 2px #339627;  
  text-stroke: 1px #339627;   */
}
.active .game-title {
  color: #FFF831;
}
.btn-wraper {
   height: 20vh;
}
.btn {
  display: inline-block;
  width: 40vw;
  height: auto;
}
