body{
background-color: #242627;
font-family: 'poppins', sans-serif;
}

.gameSelectionHeader, .gameSetupHeader{
  padding: 60px;
}
.logoHeader {
  height: 150px;
}

.logoHeader img{
width: 400px;
height: auto;
}

.titleHeader h3{
  color: #C39B3C;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 5px;
}

.titleHeader h2{
  color: white;
  font-weight: 400;
  font-size: 30px;
}


.center{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}


.gameSelectionGrid{
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 120px 0 120px;
    grid-gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 320px));
}

.gameSelectionGrid a{
  color: white;
  text-align: center;
  text-decoration: none;
}

.gameSelection-single{
  width: 320px;
}

.gameSelection-single svg{
  fill: white;
  width: 126px;
  height: 126px;
}
.gameSelection-single:hover .gameSelection-outerShape{
  -webkit-box-shadow: 0 0 10px white;
          box-shadow: 0 0 10px white;
}


.gameSelection-outerShape{
  width: 100%;
  height: 170px;
  border-radius: 12px;
  background: rgb(197,197,197);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(197,197,197,1)), color-stop(3%, rgba(65,65,65,1)), color-stop(49%, rgba(46,46,46,1)), color-stop(97%, rgba(65,65,64,1)), to(rgba(197,197,197,1)));
  background: -o-linear-gradient(top, rgba(197,197,197,1) 0%, rgba(65,65,65,1) 3%, rgba(46,46,46,1) 49%, rgba(65,65,64,1) 97%, rgba(197,197,197,1) 100%);
  background: linear-gradient(180deg, rgba(197,197,197,1) 0%, rgba(65,65,65,1) 3%, rgba(46,46,46,1) 49%, rgba(65,65,64,1) 97%, rgba(197,197,197,1) 100%);
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

.gameSelection-centerShape{
  width: 313px;
  height: 167px;
  border-radius: 12px;
  background-color: #242627;
}

.gameSelection-innerShape{
  width: 308px;
  height: 162px;
  border-radius: 10px;
  background-color: #9D2021;
}
