*{
    padding: 0;
    margin: 0;
    font-family: 'Poppins' , sans-serif;
    box-sizing: border-box;
}

body{
    /* background-color: pink; */
    background: linear-gradient(135deg, #00feba, #5b548a);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    
}

.container{
    height: 450px;
    width: 350px;
    background: linear-gradient(135deg, #00feba, #5b548a);
    border-radius: 20px;
    border: 1px solid;
}
.search-box{
    /* background-color: blueviolet; */
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
    padding-bottom: 20px;
    border-radius: 20px;
}

#text-area{
    width: 250px;
    height: 40px;
    border-radius: 50px;
    border: none;
    font-size: 15px;
    padding-left: 20px;
    padding-top: 2px;
}
#search-img{
    box-sizing: content-box;
    height: 15px;
    width: 15px;
    background-color: white;
    border-radius: 50px;
    padding: 13px;
    margin-left: 13px;
    /* object-fit: cover; */
}
.info{
    /* background-color: aqua; */
    text-align: center;
    color: white;

}

#weather-img{
    height: 120px;
    width: 120px;
}
#info-temp{
    margin-top: 5px;
    font-size: 50px;
    font-weight:500;
}
#info-city{
    padding-top: 10px;
    font-size: 30px;
}

.bottom-info{
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
}

.bottom-info-img{
    height: 35px;
    width: 35px;
}
.box{
    /* background-color: blue; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding-left: 20px;
    padding-right: 20px; */
    margin-left: 10px;
    margin-right: 10px;
    color: white;
    margin-top: 20px;
}
.upper-text{
    font-size: 25px;
}
.lower-text{
    font-size: 15px;
}
.bottom-info-text{
    padding-left: 10px;
}
#btn{
    background: none;
    border: none;
    cursor: pointer;
}