main {
  padding: 30px 0;
}

header {
  display: block;
  border-bottom: 1px solid rgb(165, 134, 134);
  padding: 0 0 30px 0;
}

.search-input {
  background-color: blanchedalmond;
  border: none;
  border-radius: 5px;
  width: 80%;
  font-size: 16px;
  padding: 15px 20px;
}
.search-button {
  background-color: rgb(165, 134, 134);
  border: none;
  padding: 15px 30px;
  border: none;
  font-size: 16px;
  margin-left: 5px;
  border-radius: 6px;
  color: white;
}
body {
  background-color: rgb(165, 134, 134);
  font-family: "Red Hat Display", sans-serif;
}
.weather-app {
  background: white;
  max-width: 600px;
  margin: 45px auto;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 10px;
  padding: 30px;
}

main {
  padding: 30px 0;
}

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

.weather-app-details {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  color: rgba(39, 33, 66, 0.4);
  line-height: 24px;
  font-weight: 500;
}

.weather-app-temperature-container {
  display: flex;
  font-size: 88px;
}
.weather-app-icon {
  padding-top: 20px;
  width: 88px;
  height: 88px;
  display: flex;
}
strong {
  color: rgb(165, 134, 134);
  font-weight: 700;
}
.city {
  font-size: 40px;
  font-weight: 700;
}

.weather-app-temperature {
  font-size: 48px;
  font-weight: 600;
  padding-top: 30px;
}

.weather-app-unit {
  font-size: 25px;
  padding-top: 15px;
}

.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.forecast-day {
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}
.weather-forecast-date {
  color: rgba(39, 33, 66, 0.4);
}

.forecast-icon {
  width: 50px;
  text-align: center;
  display: block;
  margin: 0 auto;
}
.forecast-temps {
  text-align: center;
  color: rgb(165, 134, 134);
  margin-top: 10px;
  display: flex;
  justify-content: center;
  font-size: 14px;
}
.forecast-temps strong {
  padding-left: 10px;
}

footer {
  border-top: 1px solid rgb(165, 134, 134);
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}
a {
  color: rgb(165, 134, 134);
}
