html {
  background-color: #49b2fc; /* fallback */
  background-image: linear-gradient(#1b83f9, #49b2fc);
  height: 100%;
  position: relative;
  overflow: hidden;
}

p {
  text-align: center; 
  font-size: 2em;
  color: white;
}

.nubol {
  position: absolute;
  background-image: url(https://img-01.stickers.cloud/packs/02799d10-1ffa-4475-80c7-de5c967709e2/webp/1d889371-81bb-48ee-a988-210a6c573b87.webp);
  background-size: cover;
  animation-name: moveCloud;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Diferents núvols amb mides, velocitats i profunditat */
.nubol1 {
  top: 50px;
  left: -300px;
  width: 300px;
  height: 180px;
  z-index: 1;
  animation-duration: 30s;
}

.nubol2 {
  top: 120px;
  left: -200px;
  width: 200px;
  height: 120px;
  z-index: 3;
  animation-duration: 45s;
}

.nubol3 {
  top: 200px;
  left: -250px;
  width: 250px;
  height: 150px;
  z-index: 2;
  animation-duration: 35s;
}

.nubol4 {
  top: 80px;
  left: -180px;
  width: 180px;
  height: 110px;
  z-index: 0;
  animation-duration: 50s;
}

.nubol5 {
  top: 160px;
  left: -220px;
  width: 220px;
  height: 140px;
  z-index: 4;
  animation-duration: 40s;
}

/* Animació que mou els núvols de l'esquerra cap a la dreta */
@keyframes moveCloud {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(120vw); /* Mou els núvols més enllà de la pantalla */
  }
}
