*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body,html{
    width: 100%;
    height: 100%;
    font-family: "Poppins", sans-serif;
    display: grid;
    place-items: center;
       background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card{
    width: 90%;
    max-width: 470px;
   background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 40px 30px;
    border-radius:20px ;
    text-align: center;
}
.search{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.search input{
    width: 90%;
    outline: 0;
    border: 0;
 background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 10px 25px;
    height: 60px;
    border-radius: 16px;
    margin-right:1%;
    font-size: 17px;
font-weight: 500;
}
.search input::placeholder{
    color: #fff;
}
.search button{
    border: 0;
    outline: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
}
.search button svg{
    width: 20px;
    fill: #fff;
}
#error{
    font-weight: 500;
    color: red;
    margin-top:1%;
}
.weather .weather-icon{
    width: 190px;
}
.weather h1{
    font-size: 50px;
    font-weight: 500;
}
.weather h2{
    font-size: 40px;
    font-weight: 400;
}
.details{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    margin-top: 50px;
}
.col{
    display: flex;
    align-items: center;
    text-align: left;
}

.col img,.col svg{
    width: 60px;
    height: 60px;
    fill: white;
}
.col p{
    font-size:17px;
    font-weight: 600;
}