*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Baloo 2', cursive;
}

:root {
  --color: #a0ffd0;
  --background-color: #1E1E2E;
}

body {
  font-family: 'Baloo 2', cursive;
  width: 100vw;
  min-height: 100vh;
  color: var(--color);
  background-color: var(--background-color);
}

.navbar {
  margin: 0 auto;
  min-height: 20vh;
  max-width: 1080px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title {
  font-size: 4rem;
  font-weight: bold;
}

.container {
  margin: 0 auto;
  min-height: 70vh;
  max-width: 1080px;
}

.heading {
  font-size: 2rem;
}

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

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

input.search {
  margin: 0;
  text-align: center;
  outline: 0;
  border: 8px solid #3E3E5E;
  background-color: #2E2E4E;
  color: var(--color);
  width: 120%;
  left: -10%;
  position: relative;
  top: 10px;
  z-index: 2;
  border-radius: 6px;
  font-size: 36px;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.42), inset 0 0 2px rgba(0, 0, 0, 0.19);
}

.suggestions {
  margin: 0;
  padding: 0;
  position: relative;
  /*perspective: 20px;*/
}

.suggestions li {
  list-style: none;
  border-bottom: 1px solid #1E1E2E;
  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(even) {
  transform: perspective(100px) rotateX(3deg) translateY(2px) scale(1.001);
  background: linear-gradient(to bottom,  #2E2E4E 0%,#3E3E5E 100%);
}

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

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

.hl {
  background: #ffc600;
}
