body {
  background-color: #ff8c76;
}

.montserrat-uniquifier {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
a {
  color: gray;
}

.weather-app {
  background: whitesmoke;
  max-width: 600px;
  margin: 45px auto;
  box-shadow: 0 30px 50px rgba(65, 50, 100 0.08);
  border-radius: 16px;
  padding: 30px;
}

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

.search-form-input {
  background-color: #ff8c76;
  border: none;
  border-radius: 6px;
  width: 80%;
  font-size: 16px;
  padding: 15px 20px;
}

.search-form-button {
  background: #b8ffe9;
  padding: 15px 30px;
  border: none;
  font-size: 16px;
  margin-left: 5px;
  border-radius: 6px;
  color: gray;
}
main {
  padding: 30px 0;
}

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

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

.weather-app-details {
  font-size: 16px;
  line-height: 20px;
}

.weather-app-details strong {
  color: crimson;
}

.weather-app-temperature-container {
  display: flex;
}
.weather-app-icon {
  font-size: 44px;
  margin-top: 22px;
}
.weather-app-temperature-value {
  font-size: 88px;
  margin-left: 10px;
  font-weight: bold;
  color: grey;
}

.weather-app-unit {
  margin-top: 18px;
  font-size: 28px;
  color: grey;
}
footer {
  border-top: 1px solid#ff8c76;
  padding: 30px 0 0 0;
  text-align: center;
  font-weight: 500px;
  font-size: 15px;
}
