body {
  background-color: rgb(248, 243, 234);
  font-family: "Overpass", serif;
}

a {
  color: rgb(137, 166, 227);
}

.weather-app {
  background: white;
  max-width: 600px;
  margin: 50px auto;
  box-shadow: 0 10px 15px rgba(41, 41, 41, 0.5);
  border-radius: 10px;
  padding: 35px 30px 35px 30px;
}

.search-form-input {
  background-color: rgb(248, 243, 234);
  border: 1px solid rgba(76, 169, 101, 0.5);
  border-radius: 5px;
  width: 80%;
  font-size: 15px;
  padding: 15px 15px;
}

.search-form-button {
  background: rgb(137, 166, 227);
  padding: 16px 30px;
  border: none;
  font-size: 15px;
  margin-left: 3px;
  border-radius: 5px;
  color: white;
}

main {
  padding: 18px 0 35px;
}

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

.weather-app-city {
  color: rgb(41, 109, 59);
  margin: 15px 0 25px 0;
  font-weight: 700;
  font-family: "Rubik Mono One", serif;
  font-size: 47px;
}

.weather-app-details {
  font-size: 15px;
  font-weight: bold;
  line-height: 22px;
  color: rgb(41, 41, 41, 0.3);
}

.weather-app-details strong {
  color: rgb(41, 109, 59);
  font-weight: bold;
  font-style: italic;
}

.weather-app-temperature-container {
  display: flex;
  margin-top: 14px;
}

.weather-app-icon {
  margin-top: -7px;
  width: 85px;
  height: 85px;
}
.weather-app-temperature {
  color: rgb(41, 41, 41);
  font-size: 85px;
  line-height: 92px;
  font-weight: bold;
}

.weather-app-unit {
  margin-top: 5px;
  font-size: 22px;
}

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

.weather-forecast-date {
  text-align: center;
  color: rgba(41, 41, 41, 0.4);
  font-size: 16px;
  line-height: 20px;
}

.weather-forecast-icon {
  width: 70px;
  height: 70px;
  display: block;
  margin: 0 auto;
}

.weather-forecast-temperatures {
  text-align: center;
  color: rgb(41, 109, 59);
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.weather-forecast-temperature {
  padding: 0 10px;
}
footer {
  border-top: 1px solid rgba(76, 169, 101, 0.5);
  padding: 30px 0 0 0;
  text-align: center;
  font-weight: 500;
  font-size: 12px;
  font-style: italic;
  color: rgba(0, 0, 0, 0.5);
}
