body {
  background-color: #b1efef;
}
.container {
  background: white;
  max-width: 600px;
  margin: 60px auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  background-color: rgb(38, 230, 230);
}

#search-input {
  background-color: #f9f7fe;
  border: none;
  color: rgba(39, 33, 66, 0.4);
  font-size: 18px;
  padding: 20px;
  width: 75%;
  border-radius: 6px;
}

.search-button {
  margin-left: 5px;
  font-size: 18px;
  background-color: #885df1;
  color: white;
  border: none;
  padding: 20px;
  line-height: 1;
  border-radius: 5px;
}
main {
  padding: 30px 0;
}
.weather-data {
  line-height: 1.5;
  font-size: 18px;
}

.work-sans-city-weather {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: italic;
}
#humidity,
#wind-speed,
#city-temperature {
  font-weight: bold;
}
#city-temperature {
  font-size: 70px;
  color: #333;

  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: italic;
}
.temperature {
  display: flex;
  justify-content: flex-end;
  position: relative;
  top: -110px;
}
.degrees {
  top: 30px;
  font-size: 18px;
}
#icon {
  position: relative;
  top: -25px;
  margin-left: none;
}
.weather-forecast {
  display: flex;
  justify-content: space-around;
}
.weather-forecast-day {
  margin-top: 20px;
  background-color: rgb(38, 230, 230);
  border-radius: 8px;
}
.weather-forecast-date {
  text-align: center;
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  line-height: 20px;
}
.weather-forecast-icon {
  display: block;
  margin: 0 auto;
  width: 70px;
}
.weather-forecast-temperature {
  text-align: center;
  display: flex;
  justify-content: center;
  color: #832541;
  margin-top: 10px;
}
.weather-forecast-temperature-max {
  font-weight: bold;
  padding: 0 10px;
}
.weather-forecast-temperature-min {
  padding: 0 10px;
}
footer {
  border-top: 1px solid #ccc;
  padding: 30px 0 0 0;
  text-align: center;
  color: rgba(39, 33, 66, 0.4);
  font-size: 14px;
}
