body {
  background-color: rgb(228, 216, 226);
  font-family: "Roboto", sans-serif;
}

.weather-app {
  display: block;
  background: rgb(211, 222, 225);
  max-width: 688px;
  margin: 45px auto;
  box-shadow: 0 30px 50px rgba(65, 58, 100, 0.08);
  border-radius: 5px;
  padding: 30px;
}
a {
  color: rgb(144, 88, 144);
}

header {
  border-bottom: 1px solid rgb(144, 88, 144);
  padding: 30px 0;
}
.search-form-input {
  background-color: rgba(144, 88, 144, 0.345);
  border: none;
  border-radius: 6px;
  width: 80%;
  font-size: 15px;
  padding: 15px 20px;
}

.search-form-button {
  background-color: rgb(144, 88, 144);
  padding: 15px 20px;
  border: none;
  margin-left: 5px;
  border-radius: 6px;
  color: white;
}

main {
  padding: 30px 0;
}

.weather-app-data {
  display: flex;
  justify-content: space-between;
}
.weather-app-city {
  display: block;
  margin-top: 30px;

  font-size: 45px;
  font-weight: 48px;
}
.weather-app-details {
  margin-top: 40px;
  font-size: 16px;
  color: rgba(39, 33, 66, 0.4);
  line-height: 20px;
  font-weight: 500px;
}
.weather-app-details strong {
  color: rgb(144, 88, 144);
}

.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;
}
.weather-app-unit {
  margin-top: 16px;
  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;
  margin-bottom: 10px;
}
.weather-forecast-icon {
  width: 100%;
}

.weather-forecast-temperatures {
  text-align: center;
  color: rgb(144, 88, 144);
  display: flex;
  justify-content: center;
}
.weather-forecast-temperature {
  padding: 0 10px;
}

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