@keyframes float1 {
  0%, 100% {
    transform: translate(0, 0);
    scale: 1;
  }
  25% {
    transform: translate(20px, -20px);
    scale: 1.05;
  }
  50% {
    transform: translate(-20px, 20px);
    scale: 1.1;
  }
  75% {
    transform: translate(20px, 20px);
    scale: 1.05;
  }
}
@keyframes float2 {
  0%, 100% {
    transform: translate(0, 0);
    scale: 1;
  }
  25% {
    transform: translate(-20px, 20px);
    scale: 1.05;
  }
  50% {
    transform: translate(20px, -20px);
    scale: 1.1;
  }
  75% {
    transform: translate(-20px, -20px);
    scale: 1.05;
  }
}
.textos-flutuantes .textos-container .floating-text {
  position: absolute;
  font-size: 2.25rem;
  font-weight: 600;
  text-align: center;
  opacity: 1;
  max-width: 375px;
  animation: float1 15s infinite ease-in-out;
}
.textos-flutuantes .textos-container .floating-text:nth-child(1) {
  top: 25px;
  left: 25px;
}
.textos-flutuantes .textos-container .floating-text:nth-child(2) {
  top: 25px;
  right: 25px;
  animation: float2 15s infinite ease-in-out;
  font-size: 1.75rem;
  max-width: 310px;
}
.textos-flutuantes .textos-container .floating-text:nth-child(3) {
  top: 135px;
  left: 30px;
  animation: float2 15s infinite ease-in-out;
  font-size: 2rem;
}
.textos-flutuantes .textos-container .floating-text:nth-child(4) {
  top: 160px;
  right: 40px;
}
.textos-flutuantes .textos-container .floating-text:nth-child(5) {
  top: 245px;
  left: 0px;
  font-size: 1.75rem;
}
.textos-flutuantes .textos-container .floating-text:nth-child(6) {
  top: 305px;
  right: 25px;
}
.textos-flutuantes .textos-container .floating-text:nth-child(7) {
  top: 330px;
  left: 100px;
  animation: float2 15s infinite ease-in-out;
  font-size: 1.75rem;
}
.textos-flutuantes .textos-container .floating-text:nth-child(8) {
  top: 245px;
  right: 200px;
  animation: float2 15s infinite ease-in-out;
  font-size: 1.75rem;
}
.textos-flutuantes .textos-container .floating-text:nth-child(9) {
  top: 375px;
  right: 50px;
}
.textos-flutuantes .textos-container .floating-text:hover {
  z-index: 10;
}