/* [project]/src/components/ui/animated-link.css [app-client] (css) */
.animated-link {
  --animated-link-gap: .5rem;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.animated-link[class*="gap-0"] {
  --animated-link-gap: 0;
}

.animated-link[class*="gap-1"] {
  --animated-link-gap: .25rem;
}

.animated-link[class*="gap-2"] {
  --animated-link-gap: .5rem;
}

.animated-link[class*="gap-3"] {
  --animated-link-gap: .75rem;
}

.animated-link[class*="gap-4"] {
  --animated-link-gap: 1rem;
}

.animated-link[class*="gap-5"] {
  --animated-link-gap: 1.25rem;
}

.animated-link[class*="gap-6"] {
  --animated-link-gap: 1.5rem;
}

.animated-link .hover-circle {
  opacity: .1;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
  background-color: currentColor;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
}

.animated-link .label-stack {
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  display: flex;
  position: relative;
}

.animated-link .link-label {
  z-index: 2;
  will-change: transform;
  justify-content: center;
  align-items: center;
  gap: var(--animated-link-gap, .5rem);
  width: 100%;
  height: 100%;
  line-height: 1;
  display: flex;
  position: relative;
}

.animated-link .link-label-hover {
  color: inherit;
  z-index: 3;
  will-change: transform, opacity;
  justify-content: center;
  align-items: center;
  gap: var(--animated-link-gap, .5rem);
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

/* [project]/src/components/ui/react-bits/ScrollReveal.css [app-client] (css) */
.scroll-reveal {
  margin: 20px 0;
}

.scroll-reveal-text {
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.5;
}

.word {
  display: inline-block;
}

/* [project]/src/components/ui/react-bits/ScrollFloat.css [app-client] (css) */
.scroll-float {
  overflow: hidden;
}

.scroll-float-text {
  text-align: center;
  font-size: clamp(1.6rem, 8vw, 10rem);
  font-weight: 900;
  line-height: 1.5;
  display: inline-block;
}

.char {
  display: inline-block;
}

/*# sourceMappingURL=src_components_ui_10b9f9f8._.css.map*/