body {
  font-family: "Google Sans", arial, sans-serif;
}

h1 {
  color: #202124;
  font-size: 24px;
  font-weight: 100;
  line-height: 28px;
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;

  color: rgb(112, 117, 122);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

li:first-letter {
  text-transform: capitalize;
}

.weather-app-wrapper {
  max-width: 560px;
  margin: 30px auto;
}

.weather-app {
  padding: 20px;
  border: 1px solid #dadde1;
  border-radius: 5px;
}

.overview {
  margin-bottom: 20px;
}

.weather-temperature img {
  margin-right: 5px;
  float: left;
  height: 60px;
  width: 60px;
}

.weather-temperature strong {
  color: rgb(32, 33, 36);
  line-height: 1;
  font-size: 48px;
  font-weight: 400;
}

.weather-temperature .units {
  position: relative;
  font-size: 16px;
  top: -26px;
}

.weather-temperature .active {
  color: rgb(32, 33, 36);
  cursor: default;
}

a {
  text-decoration: none;
}

.weather-temperature .active:hover {
  text-decoration: none;
}

.weather-forecast {
  margin-top: 20px;
  text-align: center;
  color: #000;
}

.weather-forecast-temperature-min {
  opacity: 0.5;
}

.weather-forecast-temperatures {
  font-size: 15px;
}
.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.weather-forecast-date {
 text-align: center; 
 font-size: 16px;
 opacity: 0.5;
 margin-bottom: 10px;
}

.weather-forecast-icon {
  width: 80px;
  height: 25px;
  display: block;
  margin: 0 auto;
  justify-content: center;
}

.weather-forecast-temperatures {
  display: flex;
  margin-top: 10px;
  justify-content: space-evenly;

  }

  .weather-forecast-temperature {
    padding: 0 5px;
  }

  footer {
    border-top: 1px solid #f9f7fe;
    padding: 30px 0 0 0;
    text-align: center;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
  }

