body {
  background: linear-gradient(
    90deg,
    rgba(63, 94, 251, 0.73) 0%,
    rgb(214, 199, 130) 100%
  );
}
.weather-app {
  background: linear-gradient(
      90deg,
      rgb(214, 199, 130) 0%,
      rgba(109, 129, 230, 0.73)
    )
    100%;
  color: #fff;
  max-width: 900px;
  margin: 30px auto;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.68);
  border-radius: 20px;
  padding: 20px;
}
header {
  border-bottom: 1px solid#f9f7fe;
  padding: 0 0 30px 0;
}
.search-form-input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 3px;
  border: none;
  color: #fff;
  font-weight: bold;
  background-color: rgb(255, 255, 255, 0.1);
  font-size: 16px;
}
.search-form-button {
  padding: 15px 20px;
  border-radius: 3px;
  border: none;

  background: linear-gradient(
    90deg,
    rgb(214, 199, 130) 0%,
    rgba(109, 129, 230, 0.73)
  );
  font-size: 16px;
  cursor: pointer;
}
footer {
  border-top: 1px solid #f9f7fe;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Courier New", Courier, monospace;
}
.weather-app-data {
  display: flex;
  justify-content: space-between;
}
main {
  overflow: hidden;
  padding: 30px 0;
}

.weather-city {
  margin: 0;
  font-size: 50px;
  line-height: 50px;
}

.weather-description {
  font-size: 20px;
  line-height: 30px;
}
.weather-description strong {
  color: #000000;
}
.weather-temperature-container {
  display: flex;
  align-items: center;
}
.weather-temperature-value {
  color: #000;
  font-size: 90px;
  line-height: 88px;
  margin-top: 50px;
}
.weather-unit {
  font-size: 20px;
  line-height: 30px;
}
.weather-icon {
  line-height: 30px;
}
.weather-forecast {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.weather-forecast-day {
  flex: 1 1 100px;
  min-width: 100px;
}
.weather-forecast-date {
  text-align: center;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
  color: rgba(39, 33, 66, 0.5);
  line-height: 30px;
}
.weather-forecast-icon {
  display: block;
  margin: 0 auto;
  width: 90px;
  height: 80px;
}
.weather-forecast-temperatures {
  display: flex;
  justify-content: center;
  font-size: 20px;
  line-height: 30px;
}
.weather-forecast-temperature {
  padding: 0 5px;
}
