body {
  background-color: white;
  font-family: "roboto";
}
.weather-app {
  background: white;
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
}

header {
  border-bottom: 1px solid #d5d5d5;
  padding: 0 0 30px 0;
}
.search-form-input {
  background-color: #f6f5f3;
  border: none;
  border-radius: 5px;
  width: 75%;
  padding: 10px 15px;
  font-size: 16px;
}

.search-form-button {
  background-color: #d5d5d5;
  border: none;
  border-radius: 5px;
  padding: 10px 26px;
  font-size: 16px;
  margin-left: 10px;
}
main {
  padding: 30px 0;
}
.weather-app-info {
  display: flex;
  justify-content: space-between;
}

.weather-app-city {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
}

.weather-details {
  font-size: 16px;
  line-height: 24px;
}
.weather-details strong {
  color: navy;
}

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

.temp-icon {
  width: 88px;
  height: 80px;
}
.temp-value {
  font-size: 80px;
  font-weight: bold;
  margin-left: 10px;
}

.temp-unit {
  margin-top: 10px;
  font-size: 24px;
}

.weather-forecast {
  margin-top: 20px;
  text-align: center;
}
.weather-forecast-day {
  font-size: 16px;
  color: navy;
  opacity: 0.6;
}
.weather-forecast-temp {
  font-size: 13px;
}
.minimum-temperature {
  opacity: 0.6;
}
footer {
  border-top: 1px solid #d5d5d5;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 12px;
}

.weather-forecast {
  display: flex;
  justify-content: space-around;
}
.weather-forecast-icon {
  width: 80px;
  height: 80px;
  display: block;
  margin: 0 auto;
}
