* {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
  background-color: blanchedalmond;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  margin: 0;
}

label {
  text-align: justify;
  margin-right: 10px;
  font-size: 18px;
}

#city {
  margin: auto;
  padding: 10px 20px;
  text-align: center;
  border: 1px solid black;
  border-radius: 25px;
  font: bold;
}

#submitButton {
  cursor: pointer;
  padding: 10px 30px;
  margin-top: 20px;
  border: 2px solid black;
  border-radius: 25px;
  background-color: lightgreen;
}

#submitButton:hover {
  background-color: azure;
}

#WeatherInfo {
  width: 30%;
  background-color: aliceblue;
  border-radius: 10px;
  margin: 40px auto;
  padding: 10px 0px;
  min-width: 500px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: none;
}
