.weather-card {
  max-width: 400px;
  margin: 80px auto;
  background: linear-gradient(135deg, #00c6ff, #0052ff);
  padding: 25px;
  border-radius: 25px;
  text-align: center;
  color: white;
  font-family: Arial, sans-serif;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.weather-card input {
  width: 80%;
  padding: 10px;
  border-radius: 12px;
  border: none;
  margin-bottom: 10px;
}

.weather-card button {
  padding: 10px 20px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(45deg, #ff512f, #dd2476);
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.weather-info img {
  width: 80px;
}

.weather-info h1 {
  font-size: 48px;
  margin: 5px 0;
}

.weather-info h3 {
  margin: 5px 0;
}

.weather-info p {
  margin: 3px 0;
}
