html {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	height: 100%;
}

body {
	display: flex;
	flex: 1;
	flex-direction; row;
	margin: 0;
	width: 100%;
	font-family: Arial;
}

body > .container {
	min-width: 400px;
	background: white;
	display: flex;
	flex: 0;
	flex-direction: column;
	text-align: center;
	box-sizing: border-box;
	padding: 0 25px;
}

body::before {
	flex-grow: 0.5;
	position: relative;
	content: "";
	background: linear-gradient(-90deg, #CCCCCC 0%, #EEEEEE 2%, #FFFFFF 7%, #CCCCCC 100%);
}

body::after {
	flex-grow: 0.5;
	position: relative;
	content: "";
	background: linear-gradient(90deg, #CCCCCC 0%, #EEEEEE 2%, #FFFFFF 7%, #CCCCCC 100%);
}

div.content {
	font-size: 1.2em;
}

a {
	text-decoration: dashed underline black;
	text-decoration-thickness: 1px;
	color: black;
}

div.picture {
	margin-bottom: 35px;
}

div.picture span {
	display: block;
	font-style: italic;
}

div.picture img {
	max-width: 100%;
}

.header {
	flex-grow: 1;
}

.content {
	flex: 1;
	width: 330px;
	margin: 0px auto 0px auto;
	flex-grow: 0;
}

.footer {
	max-width: 400px;
	font-size: 0.35em;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

div.footer div {
	margin-bottom: 10px;
}

div.content::before, div.content::after {
	content: "";
	max-width: 330px;
	height: 16px;
	background-image: url("smile.svg");
	background-repeat: repeat;
	display: block;
	margin: 0 auto 0 auto;
}

.footer > div:not(:nth-child(2)) > a {
	text-decoration: none;
}

p > img {
	width: 100%;
}

img.link-img {
	height: 1em;
	vertical-align: -2px;
}

@media screen and (max-width: 400px) {
	body {
		width: auto;
	}
	
	body > .container {
		min-width: 100%;
	}
	
	.content {
		max-width: 100%;
	}
	
	div.content {
		font-size: 0.8em;
	}