

.cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  perspective: 400px;
    font-family: 'gagalinregular', serif;
}

.cloud > * {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: center center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-shadow: 2px 0px 0.5px white, 1.4142px 1.4142px 0.5px white, 0px 2px 0.5px white, -1.4142px 1.4142px 0.5px white, -2px 0px 0.5px white, -1.4142px -1.4142px 0.5px white, 0px -2px 0.5px white, 1.4142px -1.4142px 0.5px white;
}

.cloud > *:nth-child(1) {
  color: #b02627;
  font-size: 8em;
}

.cloud > *:nth-child(n+2) {
  font-size: 5em;
  -webkit-animation: driftX 20s, driftY 13.6s;
          animation: driftX 20s, driftY 13.6s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes driftX {
  from {
    left: -100px;
  }
  to {
    left: 100px;
  }
}

@keyframes driftX {
  from {
    left: -100px;
  }
  to {
    left: 100px;
  }
}
@-webkit-keyframes driftY {
  from {
    top: -100px;
  }
  to {
    top: 100px;
  }
}
@keyframes driftY {
  from {
    top: -100px;
  }
  to {
    top: 100px;
  }
}