*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "poppins", "sans-serif";
}

body{
    background-color: #222;
}

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

.search{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.search input{
    border: 0;
    outline: 0;
    background-color: #ebfffc;
    color: #555;
    padding: 10px 25px;
    height: 60px;
    flex: 1;
    margin-right: 16px;
    border-radius: 30px;
    font-size: 18px;
}

button{
    border: 2px solid #2d9f9b9b;;
    outline: 0;
    background-color: #ebfffc;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    margin-left: -75px;
}

button img{
    width: 16px;
}

.weather{
    display: none;
    transition: ease;
}

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

.weather h1{
    font-size: 80px;
    font-weight: 500;
}

.weather h2{
    font-size: 45px;
    font-weight: 400;
    margin-top: -10px;
}

.details{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 20px;
    margin-top: 40px;
}

/* .humidity, .wind {
    margin-top: 15px;
} */

.col{
    margin-top: 10px ;
    display: flex;
    align-items: center;
    text-align: left;
}

.col img{
    margin-right: 15px;
}

.error{
    text-align: left;
    margin: 15px;
    display: none;
    color: red;
}