* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #5c729b, #2a5298);
  color: white;
}

.app {
  width: 320px;
}

/* Search */
.search {
  display: flex;
  margin-bottom: 20px;
}

.search input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 20px 0 0 20px;
}

.search button {
  padding: 10px;
  border: none;
  background: rgb(197, 25, 25);
  color: white;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
}

/* Card */
.weather-card {
  background: rgba(255,255,255,0.2);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.temp {
  font-size: 3rem;
}

.details {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}