/* @import "tailwindcss"; */

:root {
    --color-gold-1: rgba(255,220,98,1);
    --color-gold-2: rgba(199,107,28,0.5);
    --color-gold-3: rgba(255,215,0,1);
    --color-blue-bg: rgba(0,3,25,1);
}

.gold-separetor {
  animation: moveBackground 10s linear infinite;
}

@keyframes moveBackground {
  from {
    background-position: 200% 0%;
  }
  to {
    background-position: 0% 0%;
  }
}

.button-click-me {
  animation: pulse 2s linear infinite;
  transform-origin: center;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

div.swiper-slide {
  height: auto;
}