body {
  background-color: #f9f7fe;

  font-family: "Roboto", sans-serif;
}

header {
  border-bottom: 1px solid lightgray;
  padding: 0 0 30px 0;
}
a {
  color: #885df1;
}
.weather-app {
  background: white;
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 16px;
}

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

.search-form-button {
  background-color: #885df1;
  border-radius: 6px;
  color: white;
  font-size: 16px;
  border: none;
  padding: 15px 30px;
  margin-left: 3px;
}

main {
  padding: 30px 0;
}

.weather-city {
  font-size: 38px;
  line-height: 48px;
  margin: 0;
}
.weather-deets {
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  line-height: 24px;
}
.weather-deets strong {
  color: #f65282;
}

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

.weather-container {
  display: flex;
}
.weather-icon {
  width: 90px;
  height: 90px;
}
.weather-temp {
  font-size: 90px;
  line-height: 90px;
  font-weight: bold;
}
.weather-unit {
  font-size: 25px;
  margin-top: 15px;
}
footer {
  margin-top: 70px;
  border-top: 1px solid lightgray;
  font-size: 12px;
  text-align: center;
  color: rgba(0, 0, 0, 0.7);
  padding: 20px 0 0 0;
}

/*forecast*/

.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  margin-bottom: 5px;
}
.weather-forecast-day {
  text-align: center;
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}

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

.weather-forecast-temp {
  text-align: center;
  color: #f65282;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.weather-forecast-high {
  padding: 0 10px;
}
.weather-forecast-low {
  padding: 0 10px;
}
