*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.background{
    width: 550px;
    height: 100%;
}
.background img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.money-title{
    position: absolute;
    top: 40px;
    left: 52.5%;
    width: 315px;
    height: 80px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.money-title img{
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.button{
    position: absolute;
    top: 170px;
    left: 49.5%;
    width: 500px;
    height: 80px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.button img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
}
.photos{
    position: absolute;
    top: 410px;
    left: 50%;
    width: 550px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.photos img{
    width: 60%;
    height: 100%;
    object-fit: contain;
}
.game{
    position: absolute;
    top: 250px;
    left: 50%;
    width: 500px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.game img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.money-gold{
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 510px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.money-gold img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* Tablet screens ≤768px */
@media (max-width: 768px) {
  .background {
    width: 100%;
  }

  .money-title {
    top: 35px;
    width: 265px;
    left: 55%;
  }
  .money-title img {
    width: 80px;
    height: 80px;
  }

  .button {
    top: 160px;
    width: 360px;
  }

  .game {
    top: 250px;
    width: 400px;
  }

  .photos {
    top: 390px;
    width: 455px;
  }

  .money-gold {
    width: 465px;
  }
}

/* Mobile screens ≤430px */
@media (max-width: 430px) {
    .background{
        width: 100%;
        height: 100%;
    }
    .background img{
        width: 100%;
        height: 100%;
        object-fit: fill;
    }
  .money-title {
    top: 40px;
    width: 230px;
    left: 57%;
  }
  .money-title img {
    width: 50px;
    height: 50px;
  }

  .button {
    top: 165px;
    width: 250px;
  }

  .game {
    top: 238px;
    width: 400px;
  }

  .photos {
    top: 340px;
    width: 320px;
  }

  .money-gold {
    bottom: 0px;
    width: 450px;
  }
}

/* Smallest mobile ≤390px */
@media (max-width: 390px) {
  .money-title {
    top: 15px;
    width: 200px;
  }
  .money-title img {
    width: 50px;
    height: 50px;
  }

  .button {
    top: 120px;
    width: 230px;
  }

  .game {
    top: 190px;
    width: 360px;
  }

  .photos {
    top: 310px;
    width: 300px;
  }

  .money-gold {
    bottom: 0;
    width: 460px;
  }
}
