*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font: inherit;
}

body {
	font-family: 'Roboto', Arial, sans-serif;
	padding: 1em;
	background: #f7f7f7;
	max-width: 1000px;
	margin: 0 auto;
}

h1 {
	color: #333;
	margin-bottom: 1em;
	font-weight: bolder;
	font-size: 1.5em;
}

ul {
	list-style-type: none;
}

li a {
	text-decoration: none;
	color: #2b7eeb;
	display: block;
	padding: 1em;
	background: #fff;
	margin-bottom: 0.5em;
	border: 1px solid #ddd;
	max-width: 100%;
	border-radius: 5px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

li a:hover {
	border-color: #2b7eeb;
}

a:hover {
	text-decoration: underline;
}

footer {
	margin-top: 2em;
	color: #666;
	font-weight: lighter;
	font-size: 0.8em;
}

footer a {
	color: #666;
	text-decoration: none;
}

a:focus,
button:focus,
input:focus {
	outline: 1px solid #2b7eeb;
	outline-offset: 2px;
	border-radius: 3px;
}

.loading {
	color: #666;
}

::selection {
	background: #2b7eeb;
	color: white;
}
