html {
	box-sizing: border-box;
	background: #000046;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to bottom, #1CB5E0, #000046);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to bottom, #1CB5E0, #000046); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	background-attachment: fixed;
	font-family: 'helvetica neue';
	font-size: 20px;
	font-weight: 200;
	height: 100vh;
}
*, *:before, *:after {
	box-sizing: inherit;
}

input {
	width: 100%;
	padding: 0.2rem;
}

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

input.search {
	background-color: rgba(255, 255, 255, 0.5);
	margin: 0;
	text-align: center;
	outline: 0;
	border: 4px solid #F7F7F7;
	width: 120%;
	left: -10%;
	position: relative;
	top: 10px;
	border-radius: 2rem;
	font-size: 2rem;
}

.suggestions {
	margin: 10px;
	padding: 0;
	position: relative;
}

.suggestions li {
	background: rgba(255, 255, 255, 0.8);
	list-style: none;
	margin: 0;
	padding: 20px;
	transition: background 0.2s;
	display: flex;
	justify-content: space-between;
	text-transform: capitalize;
}

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

.hl {
	background: #00aaff;
}
