*{
    margin:0px;
    padding:0px;
    box-sizing: border-box;
    border:none;
    outline:none;

}
body{
    height:100vh;
    width:100%;
    display:flex;
    justify-content: center;
    align-items: center;
}
.container{
    width:90%;
    max-width: 1000px;
    border:2px solid black;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction:column;
    padding:1rem;
    border-radius: 1rem;
}
.header{
    width:100%;
}
.search-bar{
    width:100%;
    padding:1rem;
    height:min-content;
    display:flex;
    justify-content: space-between;
    align-items: center;
}
.search-bar input{
    width:84%;
    font-size:1rem;
    background-color: #e6f5fb;
    text-transform: capitalize;
    padding:1rem 2rem;
    border-radius:1rem;
}
.search-bar input::placeholder{
    color:#000;
}
.search-bar button {
    width:3rem;
    height:3rem;
    cursor:pointer;
    font-size:1.7rem;
    background-color:#e6f5fb;
    border-radius: 50%;
}
.weather-body{
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-block: 1rem;    
}
#weather-img{
    width:60%;
}
.weather-box{
    margin-block:1rem;
    text-align: center;
}
#temperature{
    font-size:1.8rem;
    font-weight: 600;
}
#description{
    font-size:1.4rem;
    font-weight: 400;
    text-transform: capitalize;
}
.weather-details{
    width:100%;
    display:flex;
    justify-content: space-between;
    margin-top:1rem;
}
.humidity,.wind{
    display:flex;
    align-items: center;
}
.text{
    text-align: center;
    margin-left:0.2rem;
}
.weather-details i {
    font-size: 1.9rem;
}
#wind-speed,#humidity{
    font-weight:800;
    font-size:1.2rem;
}
