* {
    box-sizing: border-box;
}

body {
	background: #eeeeee;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
#wrap {
	width: 800px;
	margin: 0 auto;
	padding: 1em;
	overflow: hidden;
	border: 1px solid #ddd;
	background: #fff;
}
.row {
	max-width: 800px;
	background: #fff;
	border: 1px solid #ddd;
	align: middle;
	padding-left: 0.5em;
	margin: 0 auto 0.25em auto;
}
.row:hover {
	background: #f4f3f3;
}
.row .image {
	float: left;
	margin-right: 0.5em;
	height: 150px;
	width: 150px;
}
.row p {
	margin-top: 0;
	padding-top; 0;
}
.result {
	width: 100%;
	padding-top: 0.5em;
	height: 180px;
}
a {
	text-decoration: none;
	color: black;
}
.nav {
	text-decoration: underline;
	color: darkblue;
}
h2 {
	margin: 0 0 1em 0;
}
hr {
	height: 4px;
	background: none repeat scroll 0% 0% rgb(210, 232, 197);
	margin: 1.5em 0px 1em;
	color: rgb(210, 232, 197);
	border-width: 0px medium 2px;
	border-style: none none dotted;
	border-color: -moz-use-text-color -moz-use-text-color rgb(111, 156, 106);
}
#nav {
	width: 800px;
	background: #ffffff;
	border: 1px solid #dddddd;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1em;
	font-size: 0.9em;
	text-align: center;
	margin: 1rem auto;
}
#nav h1 {
	margin: 0;
}
#nav a, #nav a:visited {
	color: #0f17b4;
	font-weight: normal;
}

#nav a:hover {
	text-decoration: underline;
}

.single-result {
	display: grid;
	grid-template-columns: minmax(auto, 400px) 1fr;
	gap: 1rem;
}

.single-result img {
max-width: 100%;
}
