*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:sans-serif;
}

body{
height:100vh;
display:flex;
justify-content:center;
align-items:center;

background-image:url("images/default.jpg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;

transition:0.5s;
}

.container{
width:400px;
background:#ffffffcc;
border-radius:12px;
padding:28px;
backdrop-filter:blur(10px);
}

.search-box{
display:flex;
justify-content:space-between;
align-items:center;
}

.search-box input{
width:84%;
font-size:18px;
padding:12px;
border-radius:10px;
background:#e6f5fb;
border:none;
}

.search-box button{
width:45px;
height:45px;
border-radius:50%;
cursor:pointer;
background:#e6f5fb;
border:none;
}

.search-box button:hover{
background:#ababab;
color:#fff;
}

.weather-body{
display:none;
flex-direction:column;
align-items:center;
margin-top:20px;
}

.weather-img{
width:60%;
}

.weather-box{
text-align:center;
margin-top:10px;
}

.temperature{
font-size:40px;
font-weight:bold;
}

.description{
font-size:20px;
margin-top:5px;
}

.feels{
margin-top:8px;
font-size:16px;
}

.weather-details{
display:flex;
justify-content:space-between;
width:100%;
margin-top:20px;
}

.humidity,.wind{
display:flex;
align-items:center;
}

.weather-details i{
font-size:30px;
}

.text{
margin-left:10px;
}

.text span{
font-size:20px;
font-weight:bold;
}

.location-not-found{
display:none;
flex-direction:column;
align-items:center;
}

.location-not-found img{
width:80%;
}

#date-time{
font-size:14px;
margin-bottom:5px;
}
