@font-face {
	font-family: 'Muli';
	font-style: normal;
	font-weight: 400;
	src: local('Muli'), url(font.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
body {
	padding: 0;
	margin: 0;
	font-family: 'Muli', sans-serif;
	font-size: 16px;
	background-color: #111;
	color: #fff;
	background-image: url('imgs/background1.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
}
h1, h2, h3, h4, form, ul, ol, li, p {
	margin: 0;
	padding: 0;
}
#presskey {
	box-sizing: border-box;
	padding: 3px;
	color: #000;
}
	.coverup #presskey {
		display: none;
	}
#suggestions {
	list-style: none;
	display: -ms-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	box-sizing: border-box;
}
	#suggestions li {
		width: 100%;
		box-sizing: border-box;
		padding: 15px;
		background-color: rgba(0, 0, 0, 0.5);
		font-family: inherit;
	}
	.hints::first-letter {
		text-decoration: underline;
	}
	.hints, .clicktogo {
		cursor: pointer;
	}
#mainwrap {
	width: 100%;
	height: 100vh;
	display: -ms-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
	.coverup #mainwrap {
		background-color: rgba(0, 0, 0, 0.5); /**/
	}
#container {
	width: 100%;
	max-width: 550px;
	margin: auto;
}
#searchField {
	box-sizing: border-box;
	width: 100%;
	padding: 15px;
	font-size: 1.2em;
	background-color: #111;
	color: inherit;
	border: #111 2px solid;
	box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
	outline: none;
	font-family: inherit;
}
	.coverup #searchField {
		background-color: #fff;
		border: #fff 2px solid;
		color: #111;
		box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.75);
	}
#footer {
	position: absolute;
	bottom: 2px;
	left: 50%;
	color: rgba(0, 0, 0, 0.8);
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
}
	#footer a {
		text-decoration: none;
		color: rgba(0, 0, 0, 0.8);
	}
		#footer a:hover {
			text-decoration: underline;
		}
