body {
  font-family: "Roboto", sans-serif;
  background: #fff799;
}
main {
  display: flex;
  justify-content: space-between;
}

.weather-app {
  background-color: beige;
  max-width: 50%;
  margin: 0 auto;
  padding: 30px;
  border-radius: 40px;
}
.city-input {
  width: 80%;
  line-height: 3em;
  font-size: 16px;
  padding: 0 0 0 20px;
  border: none;
  background: #fff799;
  border-radius: 6px;
}
.search-button {
  padding: 15px 20px;

  font-size: 16px;
  border: none;
  border-radius: 6px;
  color: white;
  background: #bbd915;
}
.other-conditions {
  color: rgba(0, 0, 0, 0.7);
}
#humidity,
#wind {
  color: #bbd915;
}
.temperature-result {
  display: flex;
  margin-top: 25px;
}
.emoji {
  width: 60px;
}
.temperature-value {
  font-size: 44px;
  padding: 0 5px;
}
.unit {
  font-size: 30px;
  margin-top: 10px;
}
.forcast {
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
}
.forcast-day {
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
}
.forcast-icon {
  width: 88px;
  height: 88px;
  display: block;
  margin: 0 auto;
}
.forcast-results {
  display: flex;
  justify-content: center;
}
.forcast-max {
  color: #bbd915;
  padding: 5px;
  font-weight: bold;
}
.forcast-min {
  padding: 5px;
  color: #bbd915;
}
footer {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 15px;
}
a {
  color: #bbd915;
}
