body {
  background: #add2c9;
  font-family: "Montserrat", sans-serif;
}

a {
  color: #5ea3a3;
}

.weatherbox {
  background: #faf9f9;
  max-width: 600px;
  margin: 50px auto;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 15px;
  padding: 30px;
}

header {
  border-bottom: 1px solid #add2c9;
  padding: 0 0 30px 0;
}

.search-form-input {
  background: #faf9f9;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  border-radius: 5px;
  border-top-color: #add2c9;
  border-left-color: #add2c9;
  width: 75%;
  padding: 10px;
}

.search-form-button {
  background: #5ea3a3;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #faf9f9;
  border: none;
  border-radius: 5px;
  margin-left: 5px;
  padding: 15px 20px;
}

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

main {
  padding: 30px 0;
}

.weather-city {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
}

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

.weather-details strong {
  color: #f5c181;
  font-weight: 400px;
}
.weather-temperature {
  display: flex;
}

.weather-icon {
  margin-top: 15px;
  margin-right: 10px;
  width: 50px;
}
.weather-value {
  font-size: 80px;
  font-weight: 600;
}

.weather-unit {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
}

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

.weather-forecast-date {
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
  margin-top: 30px;
}

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

.weather-forecast-temperatures {
  text-align: center;
  color: #f5c181;
  margin-top: 15px;
  display: flex;
  justify-content: center;
}

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

footer {
  border-top: 1px solid #add2c9;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}
