body {
  font-family: Arial, sans-serif;
  background: url('https://source.unsplash.com/1600x900/?weather,sky') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.weather-container {
  background: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

input, button {
  padding: 10px;
  margin: 10px;
  font-size: 16px;
  width: 80%;
}

button {
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background-color: #0056b3;
}

#weather {
  margin-top: 20px;
  line-height: 1.6;
}
