body {
	margin: 0;
	padding: 0;
	background-color: black;

	display: flex;
	color: white;

	font-family: 'Courier New';
	font-size: 14px;
	line-height: 24px;
	-webkit-font-smoothing: antialiased;
	box-sizing: border-box;
}

img {
	height: 100vh;
	width: 80%;
	object-fit: cover;
}

div {
	box-sizing: border-box;
	padding: 32px 44px;
	flex: 1;
}

ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

li {
	margin-bottom: 8px;
}

li > a {
	color: white;
	text-decoration: none;
	border-bottom: 1px dashed rgba(255,255,255,0.4);	
}

@media only screen and (min-device-width: 801px) {
	div {
		min-width: 350px;
		max-height: 100vh;
		overflow-y: auto;
		flex: 1;
	}
}

@media only screen and (max-device-width: 800px) {
	body {
		flex-direction: column;
		display: block;
	}

	img {
		width: 100vw;
		max-width: 100vw;
		height: 90vh;
	}

	li {
		margin-bottom: 48px;
	}
}
