body {
  background: linear-gradient(
    91.1deg,
    rgb(57, 31, 105) -2.3%,
    rgb(115, 43, 155) 44.4%,
    rgb(231, 75, 184) 103.4%
  );
}

header {
  padding: 25px;
}

a {
  color: #8ef6e4;
}

strong {
  color: darkmagenta;
}

.weather_app {
  background: linear-gradient(to top, #9890e3 0%, #b1f4cf 100%);
  max-width: 650px;
  margin: 45px auto;
  box-shadow: 0 30px 50px rgba (65, 50, 100, 0.08);
  border-radius: 16px;
  padding: 30px;
  font-family: sans-serif;
}

.search_form_input {
  background: lightgrey;
  border: none;
  border-radius: 5px;
  width: 75%;
  padding: 15px;
  font-family: sans-serif;
  font-size: 16px;
}

.search_button {
  background: #9896f1;
  border: none;
  border-radius: 5px;
  padding: 15px 25px;
  color: white;
  font-family: sans-serif;
  font-size: 16px;
}

main {
  padding: 30px;
}

footer {
  padding: 25px 0 0 0;
  text-align: center;
  font-size: 14px;
  color: lightgray;
}

.weather_container {
  display: block;
  text-align: center;
}

.current_city {
  margin: 0px;
  font-size: 38px;
  line-height: 48px;
  color: white;
  padding-top: 30px;
}

.weather_info {
  font-size: 16px;
  color: #edb1f1;
  line-height: 20px;
}

.temp_number {
  font-size: 100px;
  font-weight: 700;
  color: white;
  margin: 0 40px;
}

.temp_icon {
  font-size: 32px;
}

.temp_unit {
  font-size: 20px;
  position: absolute;
  font-weight: 600;
  color: white;
  margin-left: -40px;
  margin-top: 15px;
}

.current_temp {
  border: 8px solid lightgray;
  border-radius: 80%;
  padding: 0px;
  width: 250px;
  height: 250px;
  margin-left: 150px;
}

.weather_forecast_date {
  text-align: center;
  color: #b1f4cf;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}

.weather_forecast_icon {
  width: 55px;
  height: 55px;
  display: block;
  margin: 0 auto;
}

.weather_forecast_temps {
  text-align: center;
  color: darkmagenta;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.weather_forecast_temp {
  padding: 0 7px;
}

.weather_forecast {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  gap: 15px;
}

.weather_forecast_day {
  border: 4px solid #9890e3;
  border-radius: 50px;
  padding: 10px;
}
