/* [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;
}

/* [project]/src/components/molecules/share-menu.css [app-client] (css) */
.share-menu-wrapper {
  position: relative;
}

.share-menu {
  cursor: pointer;
  transition: all .2s ease-in;
  position: relative;
}

.share-menu__button {
  cursor: pointer;
  background-color: #fff;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  transition: all .2s ease-in;
  display: flex;
  box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d;
}

.share-menu:not(.open):hover .share-menu__button, .share-menu.open .share-menu__button {
  transform: translateY(-2px);
}

.share-icon {
  z-index: -1;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  transition: all .3s ease-in-out;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
}

.share-icon.open {
  opacity: 1;
  pointer-events: auto;
}

.share-icon:hover {
  filter: brightness(1.1);
}

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