*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.search
{
    display: flex;
    width: 100%;
    justify-self: start;
    align-items: center;
}
.search input{
    border: 0;;
    outline: 0;
    background: #ebfffc;
    color: #555;
    padding: 10px 21px;
    height: 60px;
    border-radius: 30px;
    width: 78%;
    margin-right: 16px;
    font-size: 18px;
}
.search button{
    border: 0;;
    outline: 0;
    background: #ebfffc;
    color: #555;
    height: 60px;
    width: 60px;
    margin-right:30px;
    border-radius: 30px;
    cursor: pointer;

}
.weather-icon
{
    width: 130px;
    margin-top: 30px;
}

.weather h1
{
font-size: 40px;
font-weight: 500;
}
.weather h2
{
font-size: 45px;
font-weight: 500;
}

.deatils {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
margin-top: 50px;

}
.col > img{
    width: 60px;
    margin-bottom: 10px;
}

.col{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.weather{
    display: none;
}