body {
  background-color: #e7eaf6;
  font-family: "Nunito", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.box-1 {
  background-color: #a2a8d3;
  margin: 50px auto;
  max-width: 600px;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.114);
}

.search-form-bar {
  background-color: #e7eaf6;
  border: none;
  border-radius: 5px;
  width: 50%;
  font-size: 14px;
  padding: 13px;
}
.search-form-button {
  background-color: #38598b;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  padding: 13px;
  color: #e7eaf6;
}

main {
  padding: 30px 0;
}

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

.weather-app-city {
  margin-top: 0;
  font-size: 40px;
}

.weather-app-details {
  font-size: 23px;
  font-weight: 300;
}
.weather-app-details strong {
  color: #113f67;
  font-weight: 700;
}

.weather-app-temperature {
  display: flex;
  margin-top: 30px;
}

.icon {
  width: 150px;
  height: 150px;
  margin-top: 20px;
}

.weather-app-temperature-value {
  font-size: 80px;
  margin-left: 30px;
  margin-top: 40px;
}

.weather-app-temperature-unit {
  font-size: 40px;
  margin-right: 20px;
  margin-top: 40px;
}
.box-2 {
  background-color: #a2a8d3;
  margin: 50px auto;
  max-width: 600px;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.114);
}

.weather-forecast {
  display: flex;
  justify-content: space-around;
}

.weather-forecast-date {
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}
.weather-forecast-icon {
  display: block;
  margin: 0 auto;
  width: 90px;
  height: 90px;
}
.weather-forecast-temperatures {
  text-align: center;
  color: #113f67;
  display: flex;
  justify-content: center;
}
.weather-forecast-temperature {
  padding: 0 10px;
}
footer {
  text-align: center;
  color: #113f67;
  font-size: 12px;
}
a {
  color: rgb(255, 106, 168);
}
