* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: url("images/background.png") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  width: 90%;
  max-width: 470px;
  background: rgba(0, 0, 0, 0.7); /* Dark transparent background */
  color: #f1f1f1;
  border-radius: 20px;
  padding: 40px 35px;
  text-align: center;
  backdrop-filter: blur(10px); /* Optional: glassy effect */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.search input {
  border: 0;
  outline: 0;
  background: #222;
  color: #eee;
  padding: 10px 25px;
  height: 60px;
  border-radius: 30px;
  flex: 1;
  margin-right: 16px;
  font-size: 18px;
}

.search button {
  border: 0;
  outline: 0;
  background: #444;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.search button img {
  width: 16px;
  filter: invert(1); /* Make icon white */
}

.weather-icon {
  width: 170px;
  margin-top: 30px;
}

.weather h1 {
  font-size: 80px;
  font-weight: 500;
}

.weather h2 {
  font-size: 45px;
  font-weight: 400;
  margin-top: -10px;
}

.details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  margin-top: 50px;
}

.col {
  display: flex;
  align-items: center;
  text-align: left;
}

.col img {
  width: 40px;
  margin-right: 10px;
  filter: brightness(0) invert(1); /* Make icons white */
}

.humidity,
.wind {
  font-size: 28px;
  margin-top: -6px;
}
