body {
  margin: 0;
  padding: 0;
  height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(160deg, #a1c4fd, #c2e9fb); /* sky blue gradient */
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: background 1s ease-in-out;
}
 
/* Optional: Add a soft radial glow behind the content */
body::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
 
.weather-container {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  text-align: center;
  max-width: 360px;
  width: 90%;
}
 
/* Optional: animated clouds or effects later */
@keyframes floatCloud {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(120%); }
}
 
.clouds {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 150px;
  background: url('clouds.svg') repeat-x;
  opacity: 0.2;
  animation: floatCloud 60s linear infinite;
}