#header{
  width: 100%;
  background-image: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), url('../../src/apps.jpg');
  height: 50vh;
  border-radius: 10px;
  box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%);
  display: flex;
  justify-content: center;
  align-items: center;
}

#header h1 {
  font-size: 3rem;
  text-transform: uppercase;
  width: 60%;
  text-align: center;
  color: #3a3a3a;
}

#list_games {
  display: grid;
  grid-template-columns: 33% 33% 33%;
  gap: 20px;
}

.game {
  display: grid;
  grid-template-columns: max-content auto;
  margin: 10px 0;
  gap: 20px;
  border-radius: 10px;
  padding: 5px !important;
}

.game img {
  border-radius: 10px;
  box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%);
}

figcaption p {
  margin: 0px;
}

figcaption p.name {
  font-weight: bold;
}

figcaption p.type {
  font-weight: 100;
  color: #3a3a3a;
}

figcaption p i {
  font-size: 0.6rem;
  margin-left: 5px;
  opacity: 0.8;
}

.product_image_gallery {
  width: 100%;
}

.game-information img {
  width: 3vw !important;
  box-shadow:0 1px 2px 0 rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%);
}

.game-information {
  display: grid !important;
  grid-template-columns: max-content auto;
  margin: 10px 0px !important;
  gap: 20px;
}

figure {
  padding: 20px !important;
  border-radius: 20px;
}

figure:hover, .game:hover {
  background-color: #c0c0c0;
  cursor: pointer;
}

figure img {
  pointer-events:none;
}

section#juego-destacado {
  min-height: 40vh;
  background-size: cover;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}

#filter {
  position: relative;
}

section#juego-destacado::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('../../src/minecraft.webp');
  background-size: cover;
  background-position: 50%;
  filter: opacity(50%);
  border-radius: 10px;
  box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%);
}

section#juego-destacado:hover {
  opacity: 0.8;
}

section#juego-destacado h2 {
  color: black;
  text-transform: uppercase;
}

section{
  margin: 50px 0px;
}

.product_img {
  width: 15vw;
  border-radius: 10px;
  box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%);

}

/**
* RESPONSIVE
**/

@media only screen and (max-width: 850px) {
  #list_games {
    grid-template-columns: 50% 50%;
  }
}

@media only screen and (max-width: 550px) {
  #list_games {
    grid-template-columns: 100%;
  }
}