*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, Helvetica, sans-serif;

background:
linear-gradient(rgba(133, 133, 133, 0.4), rgba(53, 53, 53, 0.4)),
url("../img/sky.webp");
background-size:cover;
background-position:center;
background-repeat:no-repeat;

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

.container{
background:rgba(255, 255, 255, 0.034);
backdrop-filter:blur(10px);
padding:30px;
border-radius:12px;
width:340px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

h1{
margin-bottom:20px;
color: white;
}

.search{
display:flex;
gap:10px;
}

input{
flex:1;
padding:10px;
border:none;
border-radius:6px;
outline: none;
border: 1px solid rgba(56,189,248,0.7);
}

input:focus{
box-shadow:0 0 5px rgba(56,189,248,0.7);
}

button{
padding:10px 14px;
border:none;
background:#38bdf8;
color:black;
font-weight:bold;
border-radius:6px;
cursor:pointer;
}

button:hover{
background:#0ea5e9;
}

.weather{
margin-top:25px;
font-size:18px;
color: white;
}

.icon{
font-size:40px;
margin-bottom:10px;
}

.loader{
margin-top:20px;
}