body {
	/* background-position: bottom, center top;
	background-repeat: repeat-x, no-repeat;
	background-image: url(../images/footer-background.jpg), url(../images/background.jpg); */
	background-position: center top;
	background-repeat: no-repeat;
	background-image: url(../images/background.jpg);
	font-family: 'Roboto', sans-serif;
	line-height: 1.5em;
}

nav {
	height: 70px;
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
	line-height: 60px;
	white-space: nowrap;
	overflow: auto;
}

nav a {
	margin-right: 3em;
	display: inline-block;
	text-decoration: none;
	font-weight: bold;
}

h1, h2, h3, h4 {
	color: rgba(76, 10, 37, 0.8);
	line-height: 2em;
}

a {
	color: rgba(76, 10, 37, 0.8);
}

ul {
	margin-bottom: 20px;
}

li {
	list-style-type: circle;
	list-style-position: inside;
}

article {
	margin-bottom: 30px;
}

p {
	margin-bottom: 20px;
}

table {
	margin-bottom: 20px;
}

th, td {
	padding: 2px;
	border: 1px solid black;
}

footer {
	margin-top: 50px;
	margin-bottom: 20px;
	padding-top: 15px;
	height: 53px;
	text-align: center;
}

#header {
	margin-top: 140px;
	margin-bottom: 235px;
	font-family: 'Indie Flower', cursive;
	font-size: 18pt;
	line-height: 27pt;
}

.article-background {
	margin-top: 40px;
	margin-bottom: 40px;
	background-color: rgba(255, 255, 255, 0.9);
}

.flex-container {
	display: flex;
	align-items: center;
	flex-direction: row;
}

.article-text {
	flex-grow: 1;
}

/* larger than mobile */
@media (min-width: 768px) {
	.article-image {
		margin-right: 20px;
		width: 33%;
		text-align: center;
	}
}

/* retina */
@media 
(-webkit-min-device-pixel-ratio: 2), 
(min-resolution: 192dpi) {
	body {
/* 		background-size: 68px 68px, 1280px 575px; */
		background-image: url(../images/background@2x.jpg);
		background-size: 1280px 683px;
	}
}

/* tablet */
@media (min-width: 768px) and (max-width: 1024px) {
	.tablet-background-color {
		background-color: rgba(255, 255, 255, 0.4);
	}
}

/* mobile */
@media (max-width: 767px) {
	body {
		background-size: 767px 409px;
	}
	#header {
		margin-top: 84px;
		margin-bottom: 141px;
	}
	.flex-container {
		flex-direction: column;
	}

}