html {
	background-attachment: fixed;
	background-image: url("images/background.jpg");
	background-size: cover;
	background-position: center;
}

body {
	font-family: serif;
	display: inline-block;
	background-color: rgba(0, 0, 0, 0.75);
	position: relative;
	max-width: 1200px;
	left: 50%;
	margin: 30px 0 30px 0;
	transform: translate(-50%, 0);
	padding: 0 20px 0 20px;

	* {
		color: white;
	}

	.hero {
		border: solid white 1px;

		padding: 10px;

		div {
			display: flex;
			align-items: center;
			overflow: hidden;
			width: 100%;
			max-height: 500px;

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

	figure {
		position: relative;
		left: 50%;
		transform: translate(-50%, 0);

		display: inline-block;

		border: solid white 1px;

		padding: 10px;

		max-width: 600px;

		margin-left: 0;
		margin-right: 0;

		figcaption {
			font-size: 80%;
		}

		img, video {
			position: relative;
			left: 50%;
			transform: translate(-50%, 0);
			max-width: 100%;
			max-height: 600px;
		}
	}

	footer {
		border-top: solid white 1px;
	}

	li {
		margin: 10px 0;
	}
}
