*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins',sana-serif;
    box-sizing: border-box;
}
body{
    background-color: #222;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    min-width: 1001px;
}
            /* style for container  */
.container{
    background:linear-gradient(135deg,#00feba,#5b548a);
    width: 30%;
    border-radius: 10px;
    padding: 3rem 2rem;
    
}
.search{
    display: flex;
    justify-content: space-between;
    
}
.search input[type='text']{
    padding: 10px 30px;
    border-radius: 30px;
    outline: none;
    border: none;
    width: 75%;
    font-size: 1.3rem;
    background-color: whitesmoke;
}
.btn{
    border-radius: 50%;
    font-size: 0.3rem;
    width: 20%;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: whitesmoke;
}
.btn:hover{
    background-color: rgb(186, 181, 181);
}
.btn img{
    width: 70%;
    padding: 10px;
}
        /* style for 2nd portion */
.content{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}
.content img{
    width: 50%;
}
.temp-city{
    margin-bottom: 1rem;
    font-size: 3.4rem;
}
        /* style for 3rd portion */
.bottom{
    display: flex;
    color: white;
    justify-content: space-between;
    margin-top: 1rem;
}
.bottom-sub{
    display: flex;
    width: 45%;
    justify-content: space-between;
}
.bottom-sub img{
    width: 30%;
}
.bottom-sub div{
    width: 60%;
}
.big-text{
    font-size: 2.3rem;
    font-weight: 800;
}
