body {
  background-color: rgb(212, 152, 109);

  font-family: "Ubuntu", sans-serif;
}
a {
  color: rgb(236, 121, 44);
}

.weather-app {
  color: rgb(67, 53, 29);
  background-color: rgb(228, 184, 152);
  max-width: 600px;
  margin: 30px auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 30px;
}

header {
  border-bottom: 1px solid rgb(227, 194, 172);
  padding: 0 0 30px 0;
}
.search-form-input {
  background-color: rgb(227, 194, 172);
  border: none;
  width: 80%;
  font-size: 16px;
  padding: 15px 15px;
}

.search-form-button {
  background-color: rgb(236, 121, 44);
  padding: 17px 30px;
  border: none;
  margin-left: 5px;
}
.weather-app-city {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
}

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

.weather-app-details {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 20px;
  font-weight: 500;
}

.weather-app-details strong {
  color: rgb(160, 64, 0);
}

.weather-app-temp-container {
  display: flex;
}

.weather-app-icon {
  color: rgb(160, 64, 0);
  width: 88px;
  height: 88px;
}
.weather-app-temp {
  font-size: 88px;
  font-weight: bold;
  line-height: 88px;
  margin-left: 10px;
}

.weather-app-unit {
  color: rgb(160, 64, 0);
  margin-top: 15px;
  font-size: 20px;
}

.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}
.weather-forecast-date {
  text-align: center;
  color: rgb(67, 53, 29);
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}

.weather-forecast-icon {
  text-align: center;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.weather-forecast-temperatures {
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.weather-forecast-temperature {
  padding: 0 10px;
}
main {
  padding: 30px 9;
}
footer {
  border-top: 1px solid rgb(227, 194, 172);
  padding: 30px 0 0 0;
  text-align: center;
  font-weight: 500;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
}
