body {
  font-family: Arial, sans-serif;
  background-color:rgb(196, 185, 178);
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: rgba(25, 92, 96, 0.852);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 90%;
}

.input-section {
  margin-bottom: 20px;
}

input {
  padding: 10px;
  width: 70%;
  border-radius: 10px;
  border: none;
  outline: none;
}

button {
  margin-top:15px;
  padding: 10px 15px;
  border: none;
  background-color: #ffffff;
  color:rgb(21, 15, 8);
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background-color: #f0f0f0;
  
}

.weather-result {
  margin-top: 20px;
  font-size: 18px;
}

.weather-result img {
  width: 80px;
  height: 80px;
}
