.root {
  display: flex;
  flex-direction: column;
  background: #6eff96;
  height: 100%;
  width: 100%;
}

.wrapper {
  height: 100%;
  max-width: 450px;
  width: 100%;
  padding: 15px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.title {
  margin-bottom: 20px;
  color: #1e371f;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.swiper {
  margin-bottom: 45px;
  width: 100%;
  max-width: 350px;
}

.swiper-slide {
  position: relative;
  border-radius: 50px;
  overflow: hidden;
}

.image {
  width: 100%;
}

.image-text {
  padding: 17px;
  position: absolute;
  bottom: 0;
  fill: rgba(17, 17, 17, 0.38);
  backdrop-filter: blur(5px);
  color: #ffed31;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 46px;
  border: 2px solid #87ffa8;
  background: #2e432d;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.55);

  color: #6eff96;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  animation: pulse 1.5s infinite;

  cursor: pointer;
  outline: none;
}

a:active,
a:focus {
  outline: none;
}

@keyframes pulse {
  0% {
    scale: 0.9;
  }
  50% {
    scale: 1;
  }
  100% {
    scale: 0.9;
  }
}
