*{
    margin: 0;
    padding: 0;

}

h1{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 900;
    width: 300px;
    text-align: center;
    margin: auto;
    padding: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.container{
    height: 360px;
    width: 250px;
    background: linear-gradient(rgb(248, 156, 171) , cyan);
    /* background: linear-gradient( rgb(81, 53, 87),aqua); */
    border-radius: 10px;
    margin:0 auto;

}
.search_bar{
    margin-left: 10px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;

}
.search_bar button img{
    height: 40px;
    width: 40px;

}
.search_bar button{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #ffffff75;
    border: none;
    margin-left: 10px;
}
.search_bar button:hover{
    cursor: pointer;
}
.input-region{
    color:rgb(28, 28, 38);
    background-color: #ffffff75;
    border-radius: 18px;
    border: none;
    width: 140px;
    font-family:Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 300;
    padding: 12px;

}

.weather_info{
    display:flex;
    justify-content: space-around;
    margin-right: 20px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.weather_info_img{
    display:flex;
    justify-content: space-around;
}
.temperature{
    display: flex;
    text-align: center;
    justify-content: center;
    font-size:20px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.displayDegreeTemp{
    color:rgba(0, 0, 0, 0.961);
    font-size: 35px;
    font-family: sans-serif;
    margin-bottom: 10px;


}
.weather_img{
    display: flex;
    justify-content: center;
    align-items: center;
}

.weather_img img{
    height: 150px;
}
.place{
    color:rgba(0, 0, 0, 0.961);
    font-size: 20px;
    font-family: sans-serif;
    text-align: center;
    justify-content: center;
}
.search{
    background-color: none;
    height: 20px;
    width: 20px;
}
.weather_status{
    margin: 0px;
    font-size: 18px;
    font-family: sans-serif;
    text-align: center;
    justify-content: center;
}
.wind, .humidity{
    height: 20px;
    width: 20px;
}
@media only screen and (max-width: 700px) and (min-width:100px){
    h1{
        margin:80px auto;
    }
    .container{
        display: flex;
        flex-direction: column;
        margin: 100px auto;

    }
}
