body {
  background-color: #866acd;
  font-family: sans-serif;
}

a {
  color: rgb(112, 35, 183);
}
.weather-app {
  background: white;
  max-width: 600px;
  margin: 30px auto;
  padding: 30px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 20px;
}

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

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

.search-form-button {
  background-color: rgba(207, 40, 207, 0.765);
  padding: 15px 20px;
  border: none;
  border-radius: 6px;
  color: white;
  margin-left: 10px;
  font-size: 16px;
}

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

main {
  padding: 30px 0;
}

.weather-app-city {
  margin: 0;
  color: rgba(159, 8, 159, 0.765);
  font-size: 38px;
  line-height: 48px;
}

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

.weather-app-temperature {
  font-size: 88px;
  margin-left: 10px;
  font-weight: bold;
}

.weather-app-unit {
  margin-top: 16px;
  font-size: 20px;
}

.weather-app-icon {
  font-size: 44px;
  margin-top: 22px;
}

.weather-app-details {
  font-size: 17px;
  color: rgba(159, 8, 159, 0.765);
  line-height: 20px;
}
.weather-app-details strong {
  color: #ea3b6f;
  font-style: italic;
  font-weight: bold;
}

.weather-forecast {
  display: flex;
  border: black;
  border-style: solid;
  border-color: #866acd;
  border-radius: 20px;
  justify-content: space-around;
  margin-top: 29px;
}

.weather-forecast-date {
  text-align: center;
  color: #060203;
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.weather-forecast-icon {
  width: 75%;
  text-align: center;
  display: block;
  margin-bottom: 10px;
  margin-left: 10px;
}
.weather-forecast-temperatures {
  text-align: center;
  color: #6d2cd5;
  margin-top: 11px;
  display: flex;
  justify-content: center;
}
.weather-forecast-temperature {
  padding: 0 10px;
  margin-bottom: 15px;
}

footer {
  border-top: 1px solid #f9f7fe;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 13px;
  color: rgb(0, 0, 0, 0.6);
}
