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

.card{
  border-radius: 20px;
  border: none;
  background: linear-gradient(135deg, #00feba, #5b548a);
  color: #fff;
  max-width: 470px;
  width: 90%;
  padding: 40px 35px;
  margin: 100px auto 0;
  text-align: center;
}

.search{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.search input{
  border: none;
  border-radius: 20px;
  background-color: white;
  outline: none;
  padding: 10px 20px;
  flex: 1;
  margin-right: 16px;
  height: 50px;
}

.search button{
  border: none;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
  padding: 5px;
}

.search-image{
  width: 30px;
  height: 30px;
}

.weather-img{
  width: 170px;
  height: 170px;
  margin-top: 30px;
}

.weather{
  display: none;
}

.weather h1{
  font-size: 60px;
  font-weight: 400;
}

.weather h2{
  font-size: 50px;
  font-weight: 500;
  margin-top: 5px;
}

.details{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  margin-top: 40px;
}

.col{
  text-align: left;
  display: flex;
  justify-content: space-between;
}

.col img{
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.humidity , .wind{
  font-size: 25px;
  margin-top: -6px;
}