* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.cloudsWrapper {
  position: relative;
  width: 100vw;
  min-height: 20vh;
  height: 12rem;
  z-index: 1;
  top: 5rem;
  overflow: hidden;
  background: #EDF1FF;
}

.cloud {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  min-width: 20rem;
  height: 15rem;
  animation: moveCloud 40s linear infinite;
}
.cloud img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cloud:nth-child(1) {
  opacity: 1;
}

.cloud:nth-child(2) {
  opacity: 0;
}

.cloud img {
  width: 100%;
  height: 100%;
}

@keyframes moveCloud {
  from {
    left: 100%;
  }
  to {
    left: -200px;
  }
}/*# sourceMappingURL=clouds.css.map */