html, body {
	margin: 0;
	padding: 0;
	border: 0;
	font-family: sans-serif;
	color: #241f1f;
	background-color: white;
}
nav {
	background-color: #241f1f;
	color: white;
	margin: 0;
	height: 3rem;
}
nav > ul {
	margin: 0;
	height: 100%;
	padding-left: 1rem;
	padding-right: 1rem;
	min-width: 54rem;
}
nav li {
	display: inline-block;
	height: 100%;
	padding: 0.6rem;
	vertical-align: middle;
	box-sizing: border-box;
	font-size: 120%;
	line-height: 1.8rem;
}
nav li:last-child {
	float: right;
}
nav img {
	height: 100%;
	vertical-align: top;
}
nav img.pixel {
	height: 28px;
}
nav a {
	color: white;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
.pixel {
	image-rendering: crisp-edges;
}
section {
	margin: auto;
	margin-top: 3.2rem;
	max-width: 70rem;
}
section > div {
	display: inline-block;
	width: calc(50% - 3.2rem);
	vertical-align: middle;
	text-align: start;
}
section > div:last-child {
	text-align: end;
}
h1 {
	margin-top: 0;
}
div > img {
	height: 15rem;
}

p {
	max-width: 40rem;
}

div.carousel {
	overflow: hidden;
	height: 15rem;
	width: 20rem;
	display: inline-block;
}

div.carousel > div > img {
	display: inline-block;
}

div.carousel > div {
	width: 50rem;
	text-align: left;
}

div.carousel > div {
	animation-name: carousel;
	animation-duration: 12s;
	animation-delay: 3s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	/*animation: 3s ease-in-out 1s infinite carousel1to2;*/
}

@keyframes carousel {
	from {
		margin-left: 0;
	}
	25% {
		margin-left: 0;
	}
	50% {
		margin-left: -20rem;
	}
	75% {
		margin-left: -20rem;
	}
	to {
		margin-left: 0;
	}
}


