body {
  background-image: url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/180/453/original/pexels-leo-wharfe-398664032-15349048.jpg?1781001006");
  background-size: cover;
  background-position: center;
  font-family: "Quicksand", sans-serif;
}
a {
  color: #d6ad78;
  text-decoration: none;
}
.weather-app {
  max-width: 600px;
  background: #f8f5f0;
  margin: 45px auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
}
header {
  border-bottom: 1px solid #ede2d4;
  padding: 0 0 20px;
}
.search-form-input {
  padding: 20px;
  border: none;
  border-radius: 5px;
  width: 70%;
  margin: 10px;
  background: #ede2d4;
  font-size: 16px;
}

.search-form-button {
  padding: 20px 30px;
  border: none;
  border-radius: 5px;
  background: #d6ad78;
  cursor: pointer;
  font-size: 16px;
}
main {
  padding: 20px 0;
}
.weather-app-data {
  display: flex;
  justify-content: space-between;
}
.weather-app-city {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
}
.weather-app-details {
  font-size: 16px;
  line-height: 20px;
  color: rgba(39, 33, 66, 0.7);
}
.weather-app-details strong {
  color: #f65282;
}
.temperature-container {
  display: flex;
}
.weather-app-temperature-icon {
  width: 80px;
  height: 80px;
}
.weather-app-temperature-value {
  font-size: 80px;
  font-weight: bold;
  line-height: 80px;
}
.weather-app-unit {
  font-size: 28px;
  margin-top: 17px;
}
.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

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

.weather-forecast-icon {
  width: 100%;
  text-align: center;
}
.weather-forecast-temperatures {
  text-align: center;
  color: #f65282;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.weather-forecast-temperature {
  padding: 0 10px;
}
footer {
  text-align: center;
  margin-top: 20px;
  color: #333;
  border-top: 1px solid #ede2d4;
  padding: 20px 0 0 0;
}
