body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #74baff19, #0984e3);
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.weather-form {
  margin: 20px;
}
.cityInput {
  padding: 10px;
  font-size: 2rem;
  font-weight: bold;
  border: 2px solid #4a494951;
  border-radius: 10px;
  margin: 10px;
  width: 300px;
}
button[type="submit"] {
  padding: 10px 20px;
  font-weight: bold;
  font-size: 2rem;
  background-color: rgba(10, 208, 10, 0.678);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
button[type="submit"]:hover {
  background-color: rgba(10, 208, 10, 0.878);
}
.card {
  background: linear-gradient(
    180deg,
    rgb(34, 153, 186),
    rgba(218, 147, 16, 0.607)
  );
  padding: 50px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.321);
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  margin-top: 20px;
}
h1 {
  font-size: 3.5rem;
  margin-top: 0px;
  margin-bottom: 25px;
}
p {
  font-size: 1.5rem;
  margin: 5px 0;
}
.cityDiplay,
.tempDisplay {
  font-size: 3.5rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.46);
  margin-bottom: 25px;
}
.humidityDisplay {
  font-weight: bold;
  margin-bottom: 25px;
}
.descDisplay {
  font-style: italic;
  font-weight: bold;
  font-size: 2rem;
}
.weatherEmoji {
  margin: 0;
  font-size: 7.5rem;
}
.errorDisplay {
  font-size: 2.5rem;
  font-weight: bold;
  color: rgba(255, 0, 0, 0.7);
  text-align: center;
  margin-top: 20px;
}
