*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

body{
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  background:linear-gradient(to right,#74ebd5,#9face6);
}

.container{
  width:320px;
  background:white;
  padding:30px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

h1{
  margin-bottom:20px;
}

input{
  width:100%;
  padding:10px;
  font-size:16px;
  margin-bottom:12px;
  border:1px solid #ccc;
  border-radius:6px;
}

button{
  padding:10px 25px;
  font-size:16px;
  background:#4CAF50;
  color:white;
  border:none;
  border-radius:6px;
  cursor:pointer;
}

button:hover{
  background:#43a047;
}

#weatherResult{
  margin-top:20px;
  font-size:16px;
}
