* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: linear-gradient(135deg, #1f3c88, #2e86de);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  justify-content: center;
}

.container {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  width: 300px;
}

.search-box {
  margin-bottom: 20px;
}

.search-box input {
  padding: 10px 15px;
  width: 180px;
  border: none;
  border-radius: 8px;
  outline: none;
}

.search-box button {
  padding: 10px 15px;
  margin-left: 5px;
  border: none;
  border-radius: 8px;
  background: #ffcc00;
  color: #1f3c88;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.search-box button:hover {
  background: #ffd633;
}

.weather-card {
  margin-top: 15px;
}

.weather-card img {
  width: 80px;
  margin: 10px 0;
}

footer {
  position: fixed;
  bottom: 10px;
  text-align: center;
  font-size: 14px;
}

footer a {
  color: #ffd633;
  text-decoration: none;
}