*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins',sans-serif;
    box-sizing: border-box;
}

body{
    background: #222;
}
.container{
    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{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.search input{

    height: 50px;
    min-width: 100px;
    border: 0;
    outline: 0;
    padding: 10px 25px;
    background-color: #ebfffc;
    color: #555;
    border-radius: 30px;
    flex: 1;
    margin-right: 16px;
    font-size: 15px;
}

.search button{
    background: #ebfffc;
    border: none;
    cursor: pointer;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;

}

.search button img{
    width: 32.5px;
    height: 32.5px;

}

.weather img{
    height: 80px;

}

.weather-icon{
    margin-top: 50px;
}

.temp{
    margin:10px 0;
    font-size: 50px;
    font-weight: 50px;
}

.city{
    font-size: 30px;
    font-weight: 30px;

}

.Details{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-top: 40px;
}

.col{
    display: flex;
    align-items: center;
    text-align: left;
}
.col img{
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

col .humidity {
    font-size: 28px;
}
col .wind {
    font-size:28px ;
}