#choose-weather {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.5rem;
  border-radius: 16px;
  width: 120px;
  text-align: center;
  pointer-events: auto;
}

#clouds {
  position: relative;
  font-family: "William Text Pro";
  height: max(420px, 40vh);
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden !important;
  color: inherit;
  pointer-events: none;
}

#clouds::before {
  position: relative;
  height: 110%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 5%, transparent 95%, #fff 100%);
  display: block;
  content: "";
  z-index: 1;
}

.cloud-wrapper {
  display: flex;
  flex-direction: row;
  width: auto;
  min-width: 300vw;
  transition: opacity 5s linear;
  animation: cloudy 460s linear infinite;
  padding-bottom: 10vh;
  white-space: pre;
  letter-spacing: 1.5px;
}
@media only screen and (max-width: 600px) {
  .cloud-wrapper {
    animation: cloudy 400s infinite;
  }
}

.cloud {
  font-size: 1rem;
  line-height: 120%;
  flex-shrink: 0;
  text-align: left;
}
.cloud span {
  word-break: break-word;
  display: inline-block;
}

.one {
  position: absolute;
  top: -10%;
  left: 0;
  z-index: 1;
  transform: scale(1.3);
}

.two {
  position: absolute;
  opacity: 0.4;
  top: 30%;
}
.two .cloud-wrapper {
  animation: cloudy 440s infinite;
}

@keyframes cloudy {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  0.3% {
    opacity: 1;
  }
  30% {
    opacity: 0.95;
  }
  80% {
    opacity: 0.8;
  }
  98% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: translateX(-4500px);
  }
}

/*# sourceMappingURL=clouds.css.map */
