html {
font: 100%/1.999 "Fedra Serif B 4", georgia, serif;
	margin: 0;
	text-rendering: optimizeLegibility;
		-webkit-font-feature-settings: "kern" 1, "liga" on, "dlig" on;
	   	   -moz-font-feature-settings: "kern" 1, "liga" on, "dlig" on;
	            font-feature-settings: "kern" 1, "liga" on, "dlig" on;
		-webkit-text-size-adjust: 100%;
}
@media (max-width: 30em) {
	html {
		font-size: .85em;
	}
}
body {
	margin: 0px;
	box-sizing: border-box;
	min-height: 100vh;
	padding: 0px;
	background: grey;
	display: flex;
	flex-direction: column;
	align-items: center;
}
h1 {
	font-size: 1em;
	font-weight: normal;
	margin: 0;
	line-height: 1;
	line-height: 1.414;
	background: white;
	box-shadow: 0px 100vw 0px 100vw hsla(0, 0%, 42%,.5);
}
article {
	color: inherit;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	background: darkgrey;
	min-height: 100vh;
	justify-content: space-between;
}
a {
	color: hsla(0,0%,100%,.5);
}
h1 > a {
	color: inherit;
	text-decoration: none;
	display: block;
	max-width: 30em;
	padding: .414em;
}
a:hover,
a:focus {
	color: red;
}
img {
	width: auto;
	height: auto;
	max-height: 95vh;
	max-width: 100vw;
	object-fit: contain;
	margin: 0px;
	display: block;
}
