body {
  background-color: rgb(245, 245, 245);
}
#formContainer {
  font-size: 1.5em;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.center {
  display: flex;
  justify-content: center;
}
#formContainer button {
  font-family: Arial, Helvetica, sans-serif;
  padding: 8px;
  font-weight: bold;
  color: white;
  border: none;
  background-color: rgb(123, 164, 252);
  border-radius: 5px;
  font-size: 1em;
  margin-left: 5px;
}
#formContainer button:hover {
  background-color: rgb(65, 124, 252);
}
#formContainer button:active {
  background-color: rgb(123, 164, 252);
}
#formContainer input {
  font-family: Arial, Helvetica, sans-serif;
  border-radius: 5px;
  font-size: 1em;
  padding: 6px;
  font-weight: bold;
}
.card {
  font-size: 1.5em;
  padding: 30px;
  margin-top: 100px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, hsl(210, 95%, 70%), hsl(57, 100%, 75%));
  box-shadow: 3px 3px rgba(139, 139, 139, 0.577);
  border-radius: 10px;
  width: 300px;
}
.cityDisplay {
  margin: 10px;
  font-size: 2.2em;
  font-weight: bold;
  margin-top: 40px;
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(74, 74, 74);
}
.tmpDisplay {
  margin: 10px;
  font-weight: bold;
  font-size: 1.8em;
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(74, 74, 74);
}
.humidityDisplay {
  margin: 10px;
  font-weight: bold;
  font-size: 1em;
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(74, 74, 74);
}
.descDisplay {
  margin: 10px;
  font-weight: bold;
  font-size: 1.5em;
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(74, 74, 74);
}
.weatherEmoji {
  width: 120px;
  margin: 10px;
  margin-bottom: 10px;
}
.errorDisplay {
  font-weight: bold;
  font-size: 2em;
  color: red;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  display: none;
}
