body {
  background: color #f9f7fe;
  font-family: "Roboto", sans-serif;
}
header {
  border-bottom: 1px solid #f9f7fe;
  padding: 0 0 30px 0;
}

.weather-application {
  background: white;
  max-width: 600px;
  margin: 45px auto;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 18px;
  padding: 30px;
}
.search-form {
  display: flex;
}
.search-form-input {
  background-color: #f9f7fe;
  border: none;
  border-radius: 6px;
  width: 80%;
  font-size: 18px;
  padding: 15px 20px;
}
.search-form-button {
  background: rgb(86, 86, 215);
  border: none;
  border-radius: 6px;
  padding: 15px 30px;
  color: white;
  font-size: 18px;
  margin-left: 5px;
}
main {
  padding: 30px 0;
}
.weather-app-city {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
}
.weather-app-details {
  font-size: 16px;
  color: rgba(92, 84, 125, 0.4);
  line-height: 25px;
  font-weight: 500;
}
.weather-app-details strong {
  color: rgb(202, 6, 6);
}
.weather-app-temp {
  display: flex;
}

.weather-app-unit {
  margin-top: 5px;
  font-size: 28px;
}
.weather-app-icon {
  width: 90px;
  height: 90px;
}
.weather-app-contents {
  display: flex;
  justify-content: space-between;
}

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

.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}
.weather-forecast-date {
  text-align: center;
  color: rgba(39, 33, 66, 0.8);
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 10px;
}
.weather-forecast-icon {
  font-size: 40px;
  text-align: center;
}
.weather-forecast-temperatures {
  text-align: center;
  margin-top: 10px;
  color: rgb(230, 10, 47);
  display: flex;
  justify-content: center;
}
.weather-forecast-temperature {
  padding: 0 10px;
}
footer {
  border-top: 1px solid #f9f7fe;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 14px;
  color: rgba(0 0 0 0.8);
}
