body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("https://images.pexels.com/photos/167699/pexels-photo-167699.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;

  height: 100vh;
}

.container {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

h1 {
  font-size: 32px;
  color: #333;
  font-weight: bold;
  margin-bottom: 20px;
}

input[type="text"]{
  width: 90%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;

}

input[type="text"], button{
  transition: all 0.3s ease;
}

input:focus {
  outline: none;
  border: 2px solid #3498db;
  box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #0056b3;
}

button:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.6);
}

.weather-info {
  margin-top: 20px;
}
.weatherInfo h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #222;
}

.weatherInfo p {
  font-size: 18px;
  margin: 5px 0;
  color: #444;
}

#weatherIcon {
  width: 100px;
  height: 100px;
  margin: 10px 0;
}


