
/*# sourceMappingURL=custom.min.css.map */

/* Kart üzerine gelince mouse'un olduğu yeri parlatmak için */
.shiny-text {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.6); /* Fallback */
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.6) 40%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0.6) 60%,
    rgba(255, 255, 255, 0.6) 100%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
}

@keyframes shine {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}
