/* General Page Styling */
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-size: cover;
  background-position: center;
  transition: background 0.5s ease-in-out;
  color: #fff;
}

/* Center Container */
.container {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Input + Button Styling */
.input-box {
  margin: 15px 0;
}

#cityInput {
  padding: 10px;
  width: 220px;
  border-radius: 5px;
  border: none;
  outline: none;
  font-size: 16px;
}

#getWeatherBtn {
  padding: 10px 20px;
  margin-left: 10px;
  background-color: #00aaff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

#getWeatherBtn:hover {
  background-color: #0077cc;
}

/* Error Styling */
.error {
  color: #ff5555;
  margin-top: 10px;
  font-weight: bold;
}

/* Footer Styling */
footer {
  position: absolute;
  bottom: 10px;
  text-align: center;
  width: 100%;
  color: rgb(139, 44, 217);
  font-weight: bold;
}
