body, html {
		width: 100%;
		height: 100%;
		box-sizing: border-box;
		padding: 0;
		margin: 0;
		background: #7c6b59;
}

#content {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	height: 100vh;
	justify-content: center;
}

img {
		height: 25em;
}

@media only screen and (max-width: 800px) 
	{#content {
		display: flex;
		flex-direction: row;
		justify-content: center;
	}

	img {
			width: 100%;
			height: auto;
	}
}
