/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #5f7995, #2c3e50);
  color: #fff;
}

/* Weather Card */
.weather-card {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  padding: 2rem;
  width: 320px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

input {
  width: 80%;
  padding: 0.6rem;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
  margin-bottom: 1rem;
}

button {
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 8px;
  background: #ff9f43;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #ff6f00;
}

.weather-info {
  margin-top: 1rem;
}

.temp {
  font-size: 2rem;
  font-weight: bold;
}

.description {
  font-size: 1rem;
  text-transform: capitalize;
}
