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

body{
    background: #222;
}

.card{
    width: 60%;
    max-width: 400px;
    background: linear-gradient(135deg, #00feba, #5b548a);
    color: #fff;
    margin: 50px auto 0;
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
}

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

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

.search button{
    background: #ebfffc;
    width: 35px;
    height: 35px;
    font-size: 17px;
    border-radius: 50%;
    border: 0;
    outline: 0;
    cursor: pointer;
}

.weather img{
    height: 170px;
    width: 175px;
    margin-top: 25px ;
}

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

.weather h2{
    font-size: 23px;
    font-weight: 400;
    margin-top: -5px;
}

.details{
    margin-top: 10px;
}
.col i{
    font-size: 20px;
    margin-right: 5px;
}

.col span{
    font-size: 17px;
    font-weight: 500;
}

.weather{
    display: none;
}

.error{
    text-align: left;
    margin-left: 10px;
    font-size: 20px;
    margin-top: 10px;
    display: none;
}
