.gameBox {
  width: 100vw;
  position: relative;

  .gameItem {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 5%;
    background: linear-gradient(to right, #0000005c, 430px, #00000000);

    img {
      width: 200px;
      height: 200px;
      border-radius: 15px;
      margin-bottom: 15px;
    }

    h4 {
      font-size: 40px;
      font-weight: 600;
      color: #fff;
    }

    p {
      font-size: 18px;
      color: #fff;
      width: 40%;
      min-width: 400px;
    }
  }
}