* {
    padding: 0;
    margin: 0;
    font-family: 'poppins' sans-serif;
    box-sizing: border-box;
}

body {
    background-color: #4555;
}

.card {
    width: 90%;
    max-width: 470px;
    background: linear-gradient(24deg, #715bec66, #060238);
    color: #ffff;
    margin: 100px auto 0;
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
}

.search {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.search input {
    display: flex;
    flex-wrap: nowrap;
    border: 0;
    outline: 0;
    background: #ebfffc;
    color: #555;
    padding: 10px 25px;
    height: 60px;
    border-radius: 30px;
    flex: 1;
    margin-right: 16px;
    font-size: 18px;
}

 .search-btn{
    border: 0;
    outline: 0;
    background: #ebfffc;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor:pointer ;
} 
.search-btn.loading {
    
    background-color: #ccc;
    opacity: 0.7;
    pointer-events: none;
    transition: 0.3s;
}
.search-btn.loading::after {
    content: "unparsed text";
    font-size: 14px;
    color: #4d4153;
    background-color: #555;
}

button img {
    position: relative;
    top: 2px;
    width: 20px;
}

.wt-icon {
    width: 170px;
    margin-top: 30px;
}

.weather h1 {
    font-weight: 500;
    font-size: 70px;
}

.weather h2 {
    font-weight: 400;
    font-size: 40px;
    text-decoration: solid;
    font-family: Verdana, sans-serif;
}

.details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
    margin-top: 50px;
}

.col {
    display: flex;
    align-items: center;
    text-align: left;
}

.col img {
    width: 40px;
    margin-right: 10px;
}

.humedity,
.wind {
    font-size: 24px;
    margin-top: -6px;
}
@media only screen and (max-width: 450px) {
  .card {
    width: 90%;
    padding: 15px;
  }

  .search input {
    width: 100%;
    font-size: 14px;
  }

  .search button {
    width: 35px;
    height: 35px;
    margin-left: 8px;
  }

  .weather h1.temp {
    font-size: 30px;
  }

  .weather h2.city {
    font-size: 20px;
  }

  .details {
    flex-direction: column;
    gap: 10px;
  }

  .col {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .col img {
    width: 30px;
    height: 30px;
  }
}

 @media (max-width: 472px){ 
    /* .search {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items:left;
    justify-content: left;
} */
  .search-btn{
    border: 0;
    outline: 0;
    background: #ebfffc;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor:pointer ;
}
.search input {
    display: flex;
    flex-wrap: nowrap;
    border: 0;
    outline: 0;
    background: #ebfffc;
    color: #555;
    padding: 10px 15px;
    height: 45px;
    border-radius: 25px; 
    /* flex: 1; */
     margin-right: 10px;
    font-size: 18px;
}
.wt-icon {
    width: 150px;
    margin-top: 30px;
}
.humedity,
.wind {
    font-size: 20px;
    margin-top: -6px;
}
}  

 @media (max-width: 375px){ 
  .search-btn{
    flex-wrap:wrap;
    border: 0;
    outline: 0;
    background: #ebfffc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor:pointer ;
}
.search input {
    display: flex;
    flex-wrap: nowrap;
    border: 0;
    outline: 0;
    background: #ebfffc; 
    color: #555;
    padding: 10px 15px;
    height: 40px;
    border-radius: 25px;
    /* flex: 1; */
     margin-right: 10px;
    font-size: 18px;
} 
.wt-icon {
    width: 120px;
    margin-top: 30px;
}
.humedity,
.wind {
    font-size: 20px;
    margin-top: -6px;
}  }  

 