body {
	background-image: url(images/journal.jpg);
	background-repeat: no-repeat;
	background-position: center 100px;
	background-attachment: fixed;
	padding-top: 771px;
}

header {
	/* Changes the postioning of this element */
	position: fixed;
	top: 0;
	left: 0;
	
	/* Need to set the width, otherwise the element
	shrink wraps around the content */
	width: 100%;
	height: 100px;
	background: #d9cbe1;
}

header h1 {
	font-family: Arial;
	color: #e25b84;
	
	
	width: 75%;
	margin: 0 auto;
	padding: 0;
	
	/* Centers the line of text vertically in the header */
	line-height: 100px;
}

section {
	background: #f7f5f5;
	padding-top: 30px;
}

article {
	margin: auto;
	width: 75%;
	font-family: Arial;
	font-size: 24px;
	color: #312e2ea6;
	line-height: 1.5em;
	padding-bottom: 30px;
}

div p {
	color: #7e9899;
}

.alignright {
	display: block;
	float: right;
	padding-left: 15px;
	max-width: 50%;
}

.alignleft {
	display: block;
	float: left;
	padding-left: 15px;
	max-width: 50%;
}

footer {
	background: #e25b84;
    ;
	padding: 50px 0;
	text-align: center;
	font-family: Arial;
	color:#fff;
}

footer a {
	color: #FFADF2;
	font-weight: bold;
	text-decoration: none;
}