body {
  background-color: aliceblue;
  font-family: "Supermercado One", sans-serif;
}

a {
  color: black;
}

.weather-app {
  background: rgb(228, 228, 210);
  max-width: 725px;
  margin: 55px auto;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  padding: 35px;
}

header {
  border-bottom: 1px solid rgb(228, 228, 210);
  padding: 0 0 35px 0;
}

.search-form-input {
  background-color: lavenderblush;
  border: none;
  border-radius: 6px;
  width: 80%;
  padding: 15px 20px;
}

.search-form-button {
  background: violet;
  padding: 10px 20px;
  border-radius: 6px;
  color: white;
  font-size: 20px;
}

main {
  padding: 30 px 0;
}

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

.weather-app-details {
  font-size: 16px;
  color: rgb(179, 175, 175);
  line-height: 25px;
  font-weight:;
}

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

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

.weather-app-temperature-container {
  display: flex;
}

.weather-app-icon {
  width: 88px;
  height: 88px;
}

.weather-app-temperature {
  font-size: 88px;
  font-weight: bold
  line-height: 88px;
}

.weather-app-unit {
  margin-top: 6px;
  font-size: 28px;
}

.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.weather-forecast-date {
  text-align: center;
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  line-height: 20px;
}

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

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

}

.weather-forecast-temperature {
  padding: 0 10px;

}
footer {
  border-top: 1px solid rgb(228, 228, 210);
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7);
}
