.blob-wrapper {
  transform: scale(0.1);
  margin-top: -36px;
}
.blob {
  position: absolute;
  width: 400px;
  height: 400px;
  margin-top: 100px;
}

.circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  transform-origin: center;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.fuchsia {
  width: 250px;
  height: 135px;
  background-color: #ff00f4;
  left: 35px;
  top: 62px;
  z-index: 1;
  animation: floatFuchsia 6s infinite alternate ease-in-out;
  transform-origin: left;
  rotate: 318deg;
  border-radius: 200px;
}
.fuchsia-two {
  width: 250px;
  height: 100px;
  background-color: #ff00f4;
  left: 35px;
  top: 62px;
  z-index: 1;
  animation: floatFuchsia 6s infinite alternate ease-in-out;
  transform-origin: left;
  rotate: 17deg;
  border-radius: 200px;
}

.red {
  width: 275px;
  height: 292px;
  left: 79px;
  top: -67px;
  z-index: 2;
  animation: floatRed 6s infinite alternate ease-in-out;
  background: radial-gradient(circle at 30% 58%, #ff3300 58%, #ff8600 20%);
}

.yellow {
  width: 186px;
  height: 132px;
  left: 141px;
  top: 42px;
  z-index: 3;
  animation: floatYellow 7s infinite alternate ease-in-out;
  rotate: 323deg;
  transform-origin: left;
  background: radial-gradient(circle at 30% 50%, #ecddbc 32%, #ffff99 20%);
}

/* Animaciones */
@keyframes floatFuchsia {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.4);
  }
  50% {
    transform: scale(0.95);
  }
  75% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes floatRed {
  0% {
    transform: scale(1) translate(0px, 0px);
  }
  25% {
    transform: scale(1.05) translate(5px, 36px);
  }
  50% {
    transform: scale(1.1) translate(-8px, 50px);
  }
  75% {
    transform: scale(0.95) translate(-30px, 60px);
  }
  100% {
    transform: scale(1) translate(5px, 5px);
  }
}

@keyframes floatYellow {
  0% {
    transform: scale(1) translate(0px, 0px);
  }
  25% {
    transform: scale(1.08) translate(22px, 14px);
  }
  50% {
    transform: scale(0.9) translate(-6px, -13px);
  }
  75% {
    transform: scale(1.05) translate(2px, -3px);
  }
  100% {
    transform: scale(1) translate(0px, 0px);
  }
}
