.mainContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
  background-image: url("/content/img/Affiliates/feb25-WelcomeBonus/background-desk.png");
}

.mainContainer div {
  position: relative;
  max-width: 1300px;
}

.mainContainer .mainImage {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mainContainer .btnImage {
  position: absolute;
  cursor: pointer;
  width: 200px;
  left: 18%;
  top: 77%;
  z-index: 10;
}

/*Media query*/
@media only screen and (min-width: 1800px) {
  .mainContainer div {
    max-width: unset;
  }
}



@media only screen and (max-width: 1024px) {
  .mainContainer {
    background-repeat: no-repeat;
    background-size: cover;
  }

  .mainContainer .btnImage {
    width: 150px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .mainContainer {
    height: auto;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape),
only screen and (max-width: 768px) {
  .mainContainer .btnImage {
    top: unset;
    bottom: 8%;
    left: 31%;
  }
}

@media only screen and (max-width: 620px) {
  .mainContainer {
    background-image: url("/content/img/Affiliates/feb25-WelcomeBonus/background-mob.png");
  }
}

@media only screen and (max-width: 385px) {
  .mainContainer .mainImage {
    /*max-height: 600px;*/
  }

  .mainContainer .btnImage {
    left: 28%;
  }
}