* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}
body {
  background-color: #222;
}
.card {
  width: 90%;
  max-width: 470px;
  background: linear-gradient(135deg, #1d2ff6, #61fdfa);
  color: #fff;
  margin: 100px auto 0;
  border-radius: 20px;
  padding: 40px 35px;
  text-align: center;
}
.search {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search input {
  border: 0;
  outline: 0;
  background: #ebfffc;
  height: 60px;
  color: #555;
  padding: 10px 25px;
  flex: 1;
  margin-right: 16px;
  font-size: 18px;
  border-radius: 30px;
}
.search button {
  border: 0;
  outline: 0;
  border-radius: 50px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  background: transparent;
}

.weather {
  margin-top: 30px;
  display: none;
}
.extra-info {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.humidity,
.windspeed {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.h-w {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
