body {
  background: #fde7bc;
}

#weather-app {
  background: #fff5e3;
  margin: 50px auto;
  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;
}

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