html {
  box-sizing: border-box;

  font-weight: 200;
  font-size: 20px;
  font-family: "helvetica neue";

  background: #ffc600;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

input {
  width: 100%;
  padding: 20px;
}

.search-form {
  max-width: 400px;
  margin: 50px auto;
}

input.search {
  position: relative;
  top: 10px;
  left: -10%;
  z-index: 2;

  width: 120%;
  margin: 0;

  font-size: 40px;
  text-align: center;

  border: 10px solid #f7f7f7;
  border-radius: 5px;
  outline: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.19);
}

.suggestions {
  position: relative;

  margin: 0;
  padding: 0;
  /*perspective: 20px;*/
}

.suggestions li {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 20px;

  list-style: none;
  text-transform: capitalize;

  background: white;
  border-bottom: 1px solid #d8d8d8;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.14);

  transition: background 0.2s;
}

.suggestions li:nth-child(even) {
  background: linear-gradient(to bottom, #ffffff 0%, #efefef 100%);
  transform: perspective(100px) rotateX(3deg) translateY(2px) scale(1.001);
}

.suggestions li:nth-child(odd) {
  background: linear-gradient(to top, #ffffff 0%, #efefef 100%);
  transform: perspective(100px) rotateX(-3deg) translateY(3px);
}

span.population {
  font-size: 15px;
}

.hl {
  background: #ffc600;
}
