body {
  background: #fde7bc;
}

#weather-app {
  background: #fff5e3;
  margin: 70px auto 0;
  max-width: 600px;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  font-family: "Outfit", sans-serif;
}

main {
  margin: 10px 0 25px;
}

#city-search-input {
  background: #fde7bc;
  width: 350px;
  padding: 15px 30px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

.city-search-button {
  background: #ffba2f;
  color: white;
  font-size: 16px;
  border: none;
  padding: 15px 30px;
  margin-left: 6px;
  border-radius: 8px;
}

.weather-app-data {
  display: flex;
  justify-content: space-between;
}

h1 {
  font-size: 40px;
}

#weather-app-details {
  color: rgba(39, 33, 66, 0.6);
}

strong {
  color: #faa700;
}

#temperature-container {
  display: flex;
  padding: 30px 0;
}

#emoji {
  font-size: 50px;
}

#temperature {
  font-size: 80px;
  font-weight: bold;
}

#unit {
  margin-top: 20px;
  font-size: 25px;
}

.weather-forecast {
  text-align: center;
  display: flex;
  justify-content: space-around;
}

.weather-forecast-date {
  color: rgba(39, 33, 66, 0.6);
  font-size: 18px;
}

.weather-forecast-icon {
  width: 80%;
  padding: 12px 0;
}

.weather-forecast-temperatures {
  color: #faa700;
  display: flex;
  justify-content: center;

}

.weather-forecast-temperature {
  padding: 0 8px;
}

footer {
  text-align: center;
  font-size: 14px;
  color: rgba(39, 33, 66, 0.6);
}
