.buttonH1 {
  z-index: 10;
  position: absolute;
  height: 100%;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  color: white;
  display: inline-flex;
  text-shadow: 2px 2px #000000;
  font-family: "iwanBold";
  font-size: 60px;
  text-align: center;  /* here */
}
body {
  overflow-x: hidden;
}
.main-content {
  animation: zoom-in-out 20s ease-out infinite normal;
  position: relative;
}
.main-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Gray with 30% opacity */
}
.buttonImage {
  width: 100%;
  height: 100%;
  border-radius: 0;
  padding: 6px;
  z-index: 1;
  position: relative;
}
@keyframes zoom-in-out {
  0% {
    background-size: 100% 100%;
    background-image: url("../images/bg-1.jpg");
    background-position: center;
  }
  10% {
    background-size: 120% 120%;
  }
  20% {
    background-size: 100% 100%;
    background-image: url("../images/bg-2.jpg");
    background-position: center;
  }
  30% {
    background-size: 120% 120%;
  }
  40% {
    background-size: 100% 100%;
    background-image: url("../images/bg-3.jpg");
    background-position: center;
  }
  50% {
    background-size: 120% 120%;
  }
  60% {
    background-size: 100% 100%;
    background-image: url("../images/bg-4.jpg");
    background-position: center;
  }
  70% {
    background-size: 120% 120%;
  }
  80% {
    background-size: 100% 100%;
    background-image: url("../images/bg-5.jpg");
    background-position: center;
  }
  90% {
    background-size: 120% 120%;
  }
  100% {
    background-size: 100% 100%;
    background-image: url("../images/bg-1.jpg");
    background-position: center;
  }
}
.buttonBlock {
  position: relative;
  overflow: hidden;
  height: 44vh;
  border: 5px solid white;
  border-collapse: collapse;
}
@media (max-width: 991px) {
  .buttonBlock {
    height: 36vh;
  }
  .buttonH1 {
    font-size: 28px;
  }
  .main-content .col-6 {
    width: 50%;
  }
}
@media (max-width: 675px) {
  .buttonH1 {
    font-size: 15px;
  }
}
@media (max-width: 393px) {
  .buttonH1 {
    font-size: 10px;
  }
}
.storeImage {
  justify-content: center;
  align-items: center;
  width: 50%;
  display: inline-flex;
  padding: 25px;
}
