html {
  box-sizing: border-box;
  font-family: 'helvetica neue';
  font-size: 20px;
  font-weight: 200;
  background: linear-gradient(to right, #2c3e50, #bdc3c7), #bdc3c7; 
}
*, *:before, *:after {
  box-sizing: inherit;
}
input {
  width: 100%;
  padding: 20px;
}

/* SEARCH BAR */

.search-form {
  max-width: 400px;
  margin: 50px auto;
}
input.search {
  margin: 0;
  outline: 0;
  border: 10px solid #F7F7F7;
  border-radius: 5px;
  width: 120%;
  top: 10px;
  left: -10%;
  position: relative;
  text-align: center;
  z-index: 2;
  font-size: 40px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.19);
}

/* SUGGESTIONS LIST */

.suggestions {
  margin: 0;
  padding: 0;
  position: relative;
}
.suggestions li {
  background: white;
  list-style: none;
  border-bottom: 1px solid #D8D8D8;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.14);
  margin: 0;
  padding: 20px;
  transition: background 0.2s;
  display: flex;
  justify-content: space-between;
  text-transform: capitalize;
}
.suggestions li:nth-child(odd) {
  /* slant inwards */
  transform: perspective(100px) rotateX(-3deg) translateY(3px);
  /* shadow at top */
  background: linear-gradient(to top, #ffffff 0%, #EFEFEF 100%);
}
.suggestions li:nth-child(even) {
  /* slant outwards */
  transform: perspective(100px) rotateX(3deg) translateY(2px) scale(1.001);
  /* shadow at bottom */
  background: linear-gradient(to bottom, #ffffff 0%, #EFEFEF 100%);
}
.hilite {
  background: #bdc3c7;
}
span.population {
  font-size: 15px;
}
