body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #b3e0ff; /* light blue, more sky-like */
  background-image: none !important; /* force remove image */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  min-height: 100vh;
}

.container {
  background: pink;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-align: center;
}

input {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  width: 60%;
  margin-bottom: 10px;
}

button {
  padding: 10px 20px;
  border: none;
  background: #ff6b81;
  color: white;
  border-radius: 10px;
  cursor: pointer;
}

#weatherBox {
  margin-top: 20px;
}

.hidden {
  display: none;
}
body {
  position: relative;
  background-color: #e6f7ff; /* optional light blue background */
  overflow: hidden;
}

.emoji {
  position: absolute;
  font-size: 100px;
  opacity: 0.08;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

.emoji:nth-child(1) { top: 10%; left: 5%; }
.emoji:nth-child(2) { top: 40%; left: 60%; }
.emoji:nth-child(3) { top: 70%; left: 20%; }

@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

.container {
  position: relative;
  z-index: 1;
}
