body {
  font-family: Arial, sans-serif;
  background-color: #e0f7fa;
  display: flex;
  justify-content: center;
  padding-top: 50px;
}

.weather-container {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

button {
  padding: 10px 20px;
  background-color: #0277bd;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

#weatherOutput {
  font-size: 20px;
  color: #333;
  margin-top: 20px;
}
