body {
  background-image: url('../img/guessBackground.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Arial, sans-serif;
}

.container {
  text-align: center;
}

.container div {
  background-color: rgba(255, 255, 255, 0.8); /* 80% opaque white background */
  padding: 10px;
  border-radius: 10px;
  margin-top: 10px;
}

/* Input and Button */
input, button {
  margin: 10px;
}

/* The button */
button {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 15px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 12px;
}

/* Hover effect */
button:hover {
  background-color: #45a049; /* Darker green */
}

/* Weather display */
.weather-container {
  margin-bottom: 10px;
  min-height: 150px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px; /* Add rounded edges */
}

.error {
  color: red;
}
