body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #00c6ff, #0072ff);
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 0;
}

.weather-container {
  max-width: 400px;
  margin: 80px auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
}

h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

.search-box {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

input {
  padding: 10px;
  border-radius: 8px;
  border: none;
  outline: none;
  width: 65%;
}

button {
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  background: #ff9800;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #e68900;
}

.weather-result {
  font-size: 18px;
  margin-top: 20px;
}