@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', san-serif;
    box-sizing: border-box;
}
body{
    background-color: #222;
    height: 900px;
}
.card{
    width: 90%;
    max-width: 470px;
    background: linear-gradient(135deg, #00feba, #5b548a);
    color: #fff;
    margin: 100px auto 0;
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
}
.search{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}
.search input{
    min-width: 0;
    border: none;
    outline: none;
    background: #ebfffc;
    color: #555;
    flex: 1;
    margin-right:16px ;
    font-size: 18px;
    height: 60px;
    border-radius: 30px;
    padding: 10px 25px;
}
.search button{
    flex-shrink: 0;
    cursor: pointer;
    height: 60px;
    width: 60px;
    background: #ebfffc;
    border: none;
    outline: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search button img{
    width: 20px;
    height: 25px;
}
.weather-icon{
    width: 175px;
    object-fit: cover;
    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;
    justify-content: space-between;
    align-items: center;
    padding: auto;
    margin-top: 50px;
}
.col{
    display: flex;
    text-align: left;
    align-items: center;
}
.col img{
    width: 40px;
    margin-right: 10px;
}
.humidity, .wind{
    font-size: 28px;
    margin-top: -6px;
}