body {
  background-image: url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/168/852/original/cloud-back.jpg?1750695294");
  background-size: cover;
  background-repeat: none;
  font-family: "Quicksand", sans-serif;
  color: rgba(0, 0, 0, 0.557);
}
.weather-app {
  background-color: rgba(255, 255, 255, 0.708);
  width: 600px;
  display: block;
  margin: 0 auto;
  margin-top: 90px;
  border-radius: 20px;
  box-shadow: -12px 10px 20px rgba(0, 0, 0, 0.2);
}
.search-bar {
  padding: 30px;
  padding-top: 50px;
  display: block;
  text-align: center;
}
.search-input {
  font-size: 18px;
  font-family: "Quicksand", sans-serif;
  width: 80%;
  border: none;
  padding: 10px;
  border: none;
  border-radius: 4px;
  color: rgba(0, 0, 0, 0.557);
}
.search-button {
  font-size: 18px;
  font-family: "Quicksand", sans-serif;
  padding: 10px;
  border: none;
  border-radius: 15px;
  background-color: #81bdc4;
  color: #fff;
}
.weather-city {
  font-size: 40px;
  margin: 0px;
  color: rgba(0, 0, 0, 0.606);
}
.weather-data {
  display: flex;
  justify-content: space-between;
  padding: 30px 50px 35px 50px;
}
p {
  margin: 0 auto;
  margin-top: 5px;
}
strong {
  color: #ada9df;
}

.weather-temp-container {
  display: flex;
  margin: 0;
}
.weather-app-icon {
  width: 120px;
  margin-right: -8px;
  margin-top: -18px;
}
.weather-temp-value {
  font-size: 88px;
  font-weight: bold;
  line-height: 1;
}
.temp-unit {
  font-size: 24px;
  margin-top: 17px;
  font-weight: bold;
}
footer {
  font-size: 11px;
  padding: 20px;
  text-align: center;
  padding-top: 45px;
}
a {
  text-decoration: none;
  color: #e1c1e6;
  font-weight: bold;
}
.weather-forecast {
  display: flex;
  justify-content: space-around;
  padding: 0 30px;
}
.weather-forecast-day {
  text-align: center;
  margin-top: 0;
  font-size: 18px;
  font-weight: bold;
}
.weather-forecast-icon {
  display: block;
  margin: 0 auto;
  width: 80px;
}
.weather-forecast-temps {
  text-align: center;
  margin-top: 5px;
  display: flex;
  justify-content: center;
}
.temp-high {
  padding-right: 10px;
  font-weight: bold;
  color: #ea99ab;
}

.temp-low {
  color: #81bdc4;
}
