@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 200;
  src: local('Source Sans Pro ExtraLight'), local('SourceSansPro-ExtraLight'), url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wlxdu3cOWxw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
  background-color: #465f6e;
  background-image: url('images/blue.png');
  color: white;
  font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 200;
  margin: 0;
}

.city-grid {
  padding-bottom: 30px;
  padding-top: 30px;
}

.city-row {
  border: none;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 10px;
  display: flex;
  margin: 0 auto;
  width: 425px;
}

.city-row:hover {
  background-color: #4488dd;
  background-color: rgba(255, 255, 255, 0.2);
}

.city-name {
  height: 80px;
  width: 75%;
}

.city-image {
  width: 300px;
}

.city-temperature {
  padding-right: 10px;
  padding-top: 20px;
  text-align: right;
  width: 25%;
}

.number {
  width: 30px;
}

.degree {
  width: 15px;
}

.day-row {
  display: flex;
  margin: 0 auto;
  padding: 5px;
}

.day-date {
  flex-shrink: 0;
  padding-right: 10px;
  text-align: right;
  width: 40px;
}

.day-high {
  flex-shrink: 0;
  width: 50px;
}

.day-low {
  flex-shrink: 0;
  width: 50px;
}

.day-icon {
  flex-shrink: 0;
  padding-right: 10px;
  text-align: center;
  width: 60px;
}

.day-image {
  width: 32px;
}

.day-summary {
  flex-grow: 1;
  line-height: 1.2;

}

.forecast {
  display: none;
  padding-bottom: 15px;
}

.forecast-inner {
  background-color: #4488dd;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  margin: 0 auto;
  max-width: 95%;
  padding-top: 5px;
  width: 700px;
}

@media screen and (max-width: 600px) {

  .city-grid {
    padding-bottom: 15px;
    padding-top: 15px;
  }

}