.container-games {
    margin: 0.5rem;
  }
  
  .game-card {
    background-size: cover;
    background-repeat: no-repeat;
    max-width: 300px;
    height: 400px;
    margin: 0.6rem auto;
    border-radius: 0;
    text-align: center;
    animation: bg-shadow-animation 1.5s infinite;
  }
  
  @keyframes bg-shadow-animation {
    50% {
      box-shadow: 5px 5px 50px yellow;
    }
  }
  
  .game-card .card-img-top {
    padding: 5%;
    max-height: 60%;
    width: auto;
  }
  
  .game-card .card-img-bottom {
    padding: 5%;
    max-height: 40%;
    width: auto;
  }
  
  .game-card .card-img-top,
  .game-card .card-img-bottom {
    z-index: 20;
    filter: drop-shadow(0 0 2px #777);
    transition: 0.3s ease;
  }
  
  .game-card .card-img-top:hover,
  .game-card .card-img-bottom:hover {
    filter: drop-shadow(0 0 5px #222);
    transform: scale(1.2);
    transition: 0.3s ease;
  }
  
  .col-btn-show-all {
    text-align: right;
  }
  
  .btn-show-all {
    padding: 1rem;
    margin-right: 3rem;
    background: linear-gradient(-30deg, purple, red);
    border-radius: 2rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .btn-show-all:hover {
    text-decoration: none;
    color: yellow;
    box-shadow: 2px 2px 4px rgba(255, 255, 0, 0.2);
    transform: scale(1.1);
    transition: 0.3s ease;
  }

  
 