@font-face {
  font-family: 'Roboto-Regular';
  src: url('../fonts/RobotoCondensed-Regular.woff2') format('woff2'), url('../fonts/RobotoCondensed-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'BalooThambi2-SemiBold';
  src: url('../fonts/BalooThambi2-SemiBold.woff2') format('woff2'), url('../fonts/BalooThambi2-SemiBold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.juego{
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%; */
  /* box-shadow: 0 20px 40px rgba(0,0,0,.2); */
  /* border-radius: 5px; */
  /* background:#0e0e0f; */
  overflow: hidden;
}

.juego .banner{
  height: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.juego .banner img{
  /* display: block; */
  /* width: 80%;
  margin: 10px auto 0 */
}

.descrip{
  position: absolute;
  width: 100%;
  bottom: -160px;
  background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,0.7987570028011204) 0%, rgba(42,42,42,0.4738270308123249) 60%, rgba(255,255,255,0) 100%);
  padding:10px;
  box-sizing: border-box;
  transition: .5s
}

.descrip p{
  font-size: small;
}

.juego:hover .descrip{
  background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,0.7987570028011204) 0%, rgba(42,42,42,0.4738270308123249) 60%, rgba(255,255,255,0) 100%);
  bottom: 0
}