body{
    margin:0;
    font-family: 'poppins', sans-serif;
    padding:0;
    box-sizing: border-box;
    background-color: #3c3434;
}
.card{
    color: aliceblue;
    border-radius: 20px;
    width: 90%;
    margin:100px auto 0;
    padding: 40px 20px;
    max-width:470px;
    background: linear-gradient(130deg, rgb(105, 192, 218), rgb(58, 88, 120));;
    text-align: center;
}
.search {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.search input{
    border:0;
    outline:0;
    padding:10px 25px;
    border-radius:25px;
    flex:1;
    height: 60px;
    font-size:18px;
    margin-right:16px;
} 
.search button{
    border:0;
    outline:0;
    border-radius: 50%;
    width:60px; 
    height:60px;
    cursor:pointer;
}
.search button img{
    width: 30px;
}
.weather-icon{
    width: 170px;
    margin-top:30px;
}
.weather h1{
    font-size: 80px;
    font-weight: 500;
}
.weather h2{
    font-size: 45px;
    font-weight: 400;
    margin-top: -40px;
}
.details{
    display:flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding: 0 20px;
}
.col{
    display: flex;
    align-items: center;
    text-align: left;
}
.col img{
    width: 40px;
    margin-right: 10px;
    
}
.humidity,.wind{
    font-size: 28px;
    margin-top: -6px;
}