*{
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    box-sizing: border-box;
}
body{
    background-color: #222;
}
.card{
    width: 100%;
    background: linear-gradient(135deg,#00feba,#5b548a);
    color: #fff;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
    padding: 40px 35px;
    height: 100vh;
}

.inputs{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content:flex-end;
    margin: 0;
}
.search{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}
.search h3{
    margin-right: 40%;
    color: #000;
    align-self: last baseline;
    font-weight: bold;
}
.search img.logo{
    width :60px;
    margin-right: 0;
}
.inputs input{
    border: 0;
    outline: 0;
    background: #ebfffc;
    color: #555;
    padding: 10px 20px;
    height: 50px;
    border-radius: 30px;
    margin-right: 16px;
    font-size: 18px;
}
.inputs button{
    border: 0;
    outline: 0;
    background: #ebfffc;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    flex-shrink: 0;
}
.inputs button img{
    width: 16px;   
}
.weather-icon{
    width: 120px;
    margin-top: 15px;
}
.weather h1{
    font-size: 48px;
    font-weight: 500;
}
.weather h2{
    font-size: 36px;
    font-weight: 400;
    margin-top: 10px;
}
.details{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 20px;
    margin: 50px auto 0;
    width:80%;
}
.details div.col{
    display: flex;
    justify-content: space-between;

}
.details div.col img{
    width: 40px;
    margin-right: 14px;
}
@media all and (max-width:780px) {
    .inputs{
        margin-left: -100px;
    }
    div.details{
        width:90%;
    }
    .search h3{
        margin-right: 50%;
    }
}
@media all and (max-width:640px) {
    .search img.logo{
        width:40px;
        align-self: flex-end;
        
    }
    .search h3{
        margin-right:50%;
        align-self: flex-end;
    }
    div.details{
        width: 95%;
    }
    
}
@media all and (max-width:480px){
    .search h3{
        display: none;
    }
    .search img.logo{
        margin-left: -30px;
        width: 35px;
        align-self: center;
    }
    .inputs input{
        width: 212px;
        padding: 5px 20px;
    }
    div.col:first-child{
        display: none;
    }
    .weather img{
        width: 160px;
    }
    .search{
        margin-bottom: 20px;
    }
    div.details{
        width: 100%;
        padding: 0;
    }
    .details div.col img{
        width: 24px;
    }
    .detailks div.col p{
        font-size: 12px;
    }
}
@media all and (max-width:360px){
    .search{
        
    }
    .search img.logo{
        display: none;
    }
    .inputs{
        width: 100%;
        margin-left: 0;
        justify-content: center;
    }
}