/* apply a natural box layout model to all elements */
*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

@font-face {
	font-family: 'ChicagoFLF';
	src: url('./fonts/ChicagoFLF.ttf') format('truetype');
}

html,
body {
	background-color: #111;
	margin: 0;
	height: 100%;
	width: 100%;
	font-family: 'ChicagoFLF', 'Times New Roman', 'Georgia', serif;
}

html,
body {
	background-color: #9FA0BE;
}

a {
	color: black;
	text-decoration-style: dotted;
}

a:hover {
	text-decoration-style: solid;
}

body {
	padding: 0 24px;
}

main {
	position: relative;
	font-size: 14px;
	z-index: 2;
	max-width: 480px;
	margin: 64px auto 0;
	border: 1px solid #111;
	background: #fff;
	box-shadow: 1px 1px #111;
}

header {
	background: url(images/lines.png) repeat 0 1px;
	display: flex;
	justify-items: center;
	border-bottom: 1px solid #111;
	box-shadow: inset 1px -3px 0px -2px #a8a9b6;
}

header:before {
	content: "";
	border: 3px solid #f0f0f0;
	width: 100%;
	height: 17px;
	position: absolute;
}

header h1 {
	font-size: 12px;
	font-weight: normal;
	padding: 1px 8px 0;
	margin: 1px auto;
	background-color: #f0f0f0;
	display: inline-block;
	position: relative;
	z-index: 10;
}

header .close {
	position: absolute;
	top: 3px;
	left: 10px;
	padding: 1px;
	background-color: #d1d2e3;
	border-top: 1px solid #38394a;
	border-left: 1px solid #38394a;
	box-shadow: 0 0 0px 1px #f0f0f0;
}

header .close-inner {
	display: block;
	height: 8px;
	width: 8px;
	background-color: #a2a5ae;
	border-bottom: 1px solid #38394a;
	border-right: 1px solid #38394a;
	text-indent: -99999em;
}

header .close-inner:hover {
	background-color: #ccc;
}

header .max {
	position: absolute;
	top: 3px;
	right: 10px;
	padding: 1px;
	background-color: #d1d2e3;
	border-top: 1px solid #38394a;
	border-left: 1px solid #38394a;
	box-shadow: 0 0 0px 1px #f0f0f0;
}

header .max-inner {
	height: 8px;
	width: 8px;
	background-color: #a2a5ae;
	border-bottom: 1px solid #38394a;
	border-right: 1px solid #38394a;
}

header .max-inner:before {
	height: 5px;
	width: 5px;
	border-bottom: 1px solid #38394a;
	border-right: 1px solid #38394a;
	background-color: #a2a4ae;
	display: block;
	content: "";
}

section {
	padding: 0 24px;
}

section p {
	font-family: monospace;
	line-height: 1.3rem;
}

section h3 {
	margin-top: 24px;
}

article {
	display: flex;
	align-items: start;
	gap: 16px;
	border-top: 2px solid lightgray;
	border-left: 2px solid lightgray;
	border-bottom: 2px solid whitesmoke;
	border-right: 2px solid whitesmoke;
	padding: 14px 12px;
	margin-bottom: 14px;
}

article img {
	width: 100px;
	height: auto;
	display: block;
	padding: 2px;
	border: 1px dotted black;
}

article h3 {
	margin: 0 0 14px;
}

article p:last-child {
	margin-bottom: 0;
}

footer {
	max-width: 480px;
	margin: 2em auto;
	padding-bottom: 2em;
	font-family: monospace;
	font-size: 12px;
	line-height: 1.3rem;
}

@media (max-width: 512px) {
	article {
		flex-wrap: wrap;
	}

	article img {
		max-width: 100%;
		width: 152px;
	}
}
