body {
  background: #c2ffbb;
  font-family: "Montserrat", sans-serif;
}
main {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 15px;
}
footer {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #64bd97;
  margin-top: 20px;
}
hr {
  color: #c2ffbb;
  opacity: 0.4;
}
a {
  color: #b693fe;
}
.container {
  background: #477d7f;
  max-width: 650px;
  margin: 100px auto;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.35);
}
.search-form {
  max-width: 570px;
  margin: 0 auto 30px;
}
.search-form-input,
.search-form-button {
  border: none;
  border-radius: 6px;
  padding: 15px;
  font-size: 16px;
}
.search-form-input {
  background-color: #f9f7fe;
  width: 70%;
}
.search-form-button {
  background-color: #c2ffbb;
  width: 25%;
  margin-left: 5px;
}
.weather-data {
  display: flex;
  justify-content: space-between;
  color: #cef9e2;
  font-weight: 500;
}
.weather-city {
  margin: 0;
  font-weight: 700;
  font-size: 44px;
  line-height: 48px;
}
.weather-details {
  font-size: 16px;
  line-height: 28px;
}
.weather-details strong {
  color: #ff9de2;
}
.weather-temp-container {
  display: flex;
}
.weather-icon {
  width: 88px;
  height: 88px;
}
.weather-value {
  font-size: 72px;
  font-weight: 600;
  margin-left: 10px;
}
.weather-unit {
  font-size: 28px;
  margin-top: 10px;
}
.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
}
.weather-forecast-date {
  text-align: center;
  color: #cef9e2;
  font-size: 16px;
  line-height: 28px;
}
.weather-forecast-icon {
  width: 68px;
  height: 68px;
  display: block;
  margin: 0 auto;
}
.weather-forecast-temps {
  text-align: center;
  font-size: 16px;
  color: #ff9de2;
  line-height: 28px;
  display: flex;
  justify-content: center;
}
.divider {
  color: #cef9e2;
  padding-left: 10px;
  padding-right: 10px;
}
