body {
  margin: 0;
  background: linear-gradient(to top, #3eb8e9, #ffffff);
  overflow: hidden;
  font-family: sans-serif;
}

.beach-scene {
  position: relative;
  height: 100vh;
  width: 100%;
}
.beach-scene .sun {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #FFD700 60%, #FFA500 100%);
  border-radius: 50%;
  animation: spin 10s linear infinite;
}
.beach-scene .cloud {
  position: absolute;
  top: 100px;
  left: 10%;
  width: 300px;
  opacity: 0.9;
  animation: floatCloud 12s ease-in-out infinite alternate;
}
.beach-scene .wave {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 150px;
  background: url("images/wave.png") repeat-x;
  background-size: contain;
  animation: waveMove 5s linear infinite;
}
.beach-scene .beach-ball {
  position: absolute;
  bottom: 150px;
  left: 50%;
  width: 80px;
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
}
.beach-scene .sand-footer {
  height: 100px;
  background: url("images/sand-texture.png") repeat;
  background-size: cover;
  width: 100%;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes waveMove {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1000px;
  }
}
@keyframes floatCloud {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0) scale(1);
  }
  50% {
    transform: translateX(-50%) translateY(-100px) scale(1.1);
  }
}
@media (max-width: 600px) {
  .beach-scene .sun {
    width: 60px;
    height: 60px;
    top: 20px;
    right: 20px;
  }
  .beach-scene .beach-ball {
    width: 50px;
  }
  .beach-scene .wave {
    height: 100px;
  }
}
@media (max-width: 600px) and (max-width: 600px) {
  .sand-footer {
    height: 80px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
}/*# sourceMappingURL=styles.css.map */