* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #0f172a, #020617);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
  color: white;
}

.weather-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 30px 40px;
  text-align: center;
  width: 320px;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.weather-card:hover {
  transform: scale(1.04);
}

h1 {
  margin-bottom: 15px;
}

#temp {
  font-size: 3rem;
  font-weight: bold;
  margin: 10px 0;
}

#desc {
  opacity: 0.85;
  margin-bottom: 20px;
  text-transform: capitalize;
}

footer {
  font-size: 0.8rem;
  opacity: 0.7;
}
