* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #d4fc79, #96e6a1);
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.weather-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

input {
  width: 80%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 1rem;
  outline: none;
  background: #ffffffdd;
}

button {
  padding: 12px 20px;
  background: #333;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #555;
}

.weather-card {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 15px;
  color: #000;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
