:root {
  font-family: 'VT323';
}

html {
  box-sizing: border-box;
  background: #ffc600;
  font-size: 20px;
  font-weight: 200;
  background: url('img/bg.png');

}

input::placeholder {
  font-family: 'VT323';
}

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

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

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

input.search {
  font-family: 'VT323';
  margin: 0;
  text-align: center;
  outline: 0;
  border: 20px solid red;
  width: 120%;
  left: -10%;
  position: relative;
  top: 10px;
  z-index: 2;
  border-radius: 10px;
  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 {
  margin: 30px;
  padding: 0;
  position: relative;
}

.suggestions li {
  list-style: none;
  border-bottom: 1px solid #D8D8D8;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.14);
  margin: 5px;
  padding: 20px;
  transition: background 0.1s;
  display: flex;
  justify-content: space-between;
  text-transform: capitalize;
  text-transform: uppercase;
}

.suggestions li:nth-child(even) {
  background: linear-gradient(to top,  #ffffff 0%,#EFEFEF 100%);
}

.suggestions li:nth-child(odd) {
  background: linear-gradient(to top,  #ffffff 0%,#EFEFEF 100%);
}

.suggestions li:nth-child(even):hover {
  background: blue;
}

.suggestions li:nth-child(odd):hover {
  background: red;
}

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

.hl {
  background: #ffc600;
}
