body {
  margin: 0;
  background: black;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100dvh;
}

.container {
  overflow: hidden;
  max-width: 450px;
  width: 100%;
  height: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-image: url("./images/bg.png");
  background-size: 100% 100%;
  background-position: center;
}
.support {
  position: absolute;
  top: 10px;
  background-image: url("./images/support.png");
  background-size: contain;
  right: 15px;
  height: 60px;
  width: 60px;
}


.swiperContainer {
  width: 100%;
  position: absolute;
  bottom: 13%;
  height: 23%;
  padding: 0;
  margin: 0;
}
.swiper-container .swiper-slide  img {
  width: 100%;
  object-fit: fill;
}

.download {
  background-image: url("./images/download.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  position: absolute;
  bottom: 34%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  height: 9%;
  cursor: pointer;
  animation: scaleAnimation 2s infinite;
}

.footer {
  background-image: url("./images/footer.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: fixed;
  max-width: 450px;
  height: 13%;
  bottom: 0;
  width: 100%;
  display: block;
  cursor: pointer;
}

@keyframes scaleAnimation {
  0% {
    transform: translate(-50%, -50%) scale(1); /* Start at original size */
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2); /* Scale up to twice the size */
  }
  100% {
    transform: translate(-50%, -50%) scale(1); /* Return to original size */
  }
}