*{
    margin : 0;
    padding : 0;
    font-family: 'Poppins',Sans-Serif;
    box-sizing: border-box;
}
body{
    background-color: #222;
    background-image: url('images/backk.png');;
}

.logo img{
    margin-left:30px;
    margin-top: -40px;
    width:300px;
}

.card{
    width:400px;
    background: linear-gradient(1deg, #00feba, #5b548a);
    color:#fff;
    border-radius: 30px;
    padding : 30px;
    margin:auto;
    /* margin-top: 30px; */
    margin-bottom: 50px;
}
.search{
    display:flex;
    justify-content: center;
}
.inputfield input{
    border-radius: 40px;
    width:250px;
    height:50px;
    text-align: center;
    border: none;
    font-size: 20px;
    margin-right:20px;
}
.icon button{
    height:50px;
    width:50px;
    border-radius: 50%;
    border:none;
}
.icon img{
    width: 50%;
}
.weatherimg{
    padding-left:75px;
    padding-top: 50px;
}
.weatherimg img{
    width:180px;
}
.temperature{
    /* margin-left:100px;
    margin-bottom:30px; */
    font-size: 60px;
    color:white;
    text-align: center;
}
.city{
    /* font-size: 40px;
    margin-left:75px; */
    margin-bottom:40px;
    text-align: center;
    color:white;
}
.info{
    display:flex;
    justify-content: space-around;
    align-items: center;
}
.humidity{
    display: flex;
    flex: 1;
    padding-left: 15px;
}
.humimg img{
    width:50px;
    margin-right: 10px;
}
.huminfo{
    text-align: center;
    color: white;
    font-size: 20px;
}
.humtext{
    font-size: 10px;
}
.windimg img{
    width:50px;
    margin-right: 10px;
}
.wind{
    display: flex;
}
.windinfo{
    text-align: center;
    color: white;
    font-size: 20px;
}
.windtext{
    font-size: 10px;
}
.weather{
    display: none;
}
.error{
    color:white;
    margin-left: 20px;
    margin-top: 10px;
    font-size: 20px;
    display: none;
}