/* BlurText — word/letter blur-in animation (vanilla port of React Bits) */

.blur-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.blur-text__segment {
  display: inline-block;
  will-change: transform, filter, opacity;
}
