body {
  font-family: Arial, sans-serif;
  background: #87ceeb;
  display: flex;
  justify-content: center;
  padding: 50px;
}

.container {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 300px;
}

input {
  width: 80%;
  padding: 10px;
  margin-bottom: 10px;
}

button {
  padding: 10px;
  background: #333;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background: #555;
}

#weatherResult {
  margin-top: 20px;
}
