body {
  background: #a3c2c2;
  font-family: 'Overlock', cursive, sans-serif;
  font-size: 16px;
  color: #333;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

section {
  width: 100%;
  height: 100%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.07), 
                0 2px 4px rgba(0,0,0,0.07), 
                0 4px 8px rgba(0,0,0,0.07), 
                0 8px 16px rgba(0,0,0,0.07),
                0 16px 32px rgba(0,0,0,0.07), 
                0 32px 64px rgba(0,0,0,0.07);
}

/* Weather Today */
.top-left {
  padding-left: 26px;
  margin-top: 16px;
}

p {
  margin: 3px;
}

.icon {
  height: 130px;
  width: 130px;
  margin: 0;
}

.now {
  display: flex;
  flex-direction: column;
  justify-content: left;
}

h1 {
  font-size: 50px;
  text-align: left;
  margin: 0 0 26px 0;
  padding-left: 26px;
}

/* Forecast */
.five-day {
  font-size: 13px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-around;
  max-width: 320px;
  padding-left: 26px;
}

.date {
  width: 45px;
}

.temp {
  width: 40px;
}
.description {
  width: 120px;
  padding-left: 26px;
}

img {
  height: 45px;
}

/* City Selector */
.city-selector {
  margin: 25px 0 15px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
}

/* Footer */
footer {
  padding: 26px 26px 10px 26px;
}

.footer {
  width: 100%;
  bottom: 0;
  text-align: center;
  font-size: 10px;
}

footer a {
  text-decoration: none;
  color: #333;
}

/* Media queries */
@media (min-width: 768px) {  
  section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

  }
  
  .city-selector {
    margin: 35px 0 50px 200px;
    display: block;
    order: 1;
  }

  .now {
    order: 2;
    max-width: 400px;
    margin-left: 200px;
  }

  h1 {
    padding: 0;
  }

  .top-left {
    order: 3;
    margin: 0 0 0 200px;
    padding: 0;
  }

  .top-left p {
    font-size: 30px;
  }
  
  .five-day {
    order: 3;
    margin: 16px 0 100px 200px;
    padding: 0;
    font-size: 20px;
    max-width: 450px;
  }

  .date {
    width: 75px;
  }

  .description {
    width: 200px;
    padding-left: 13px;
  }

  footer {
    order: 3;
    padding: 21px 0;
    margin-left: 200px;
  }
}