*{
  margin:0;
  padding:0;
  font-family:'Poppins';
  box-sizing:border-box;
}

html,body{
  width:100%;
  height:100%;
  background-color:#243b53;
}

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

}

.img{
  position:relative;
  height:60px;
  width:60px;
}

.searchbox{
  width:100%;
  display:flex;
  allign-items:center;
  justify-content:space-between;

}

.searchbox input{
  border:0;
  outline:0;
  background: #ebfffc;
  color: #555;
  padding:10px 25px;
  height: 60px;
  border-radius:30px;
  flex: 1;
  margin-right:16px;
  font-size: 18px;
  transition:.5s ease-in-out;

}

.searchbox button {
  border: 0;
  outline: 0;
  background: rgb(6, 152, 242);
  border-radius: 50%;       /* makes the button circular */
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: 0.5s ease-in-out;
  display: flex;             /* center the image inside */
  justify-content: center;
  align-items: center;
  padding: 0;
}

.searchbox button img {
  width: 50%;
  height: 60%;
  object-fit: contain;
  border-radius: 0;
  filter: brightness(0) invert(1);
}


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

.temp{
  font-size: 4em;
  color:white;
  font-weight:bold;
  font-style:normal;

}

.weather-icon{
  width:200px;
  margin-top:30px;
}
.weather h1{
  /* margin:10px 20px 20px 20px; */
  font-size:80px;
  font-weight:600;

}

.weather h2{
  font:sans-serif;
  color:white;
  border:bold;
  font-size:45px;
  font-weight:400;
  margin-top: -10px;
  margin: -10px 10px 20px 10px'
}

.details {
  /* font-size: 0px; */
  display: flex;
  justify-content: space-between;
  allign-items: center;
  padding: 0 20px;
  margin-top: 50px;
}

.col {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.col img {
  width: 50px;
  height: 50px;
}

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