/*
* Name:			style.css
* Author:		Russell Judkins
* Description:	CSS stylesheet for www.russelljudkins.com
*/
body {
	background-attachment: fixed;
	background-image: url("/images/background.jpg");
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	color: #2a3517;
	margin: 4em auto;
	max-width: 90ch;
	padding: 10px;
	font-family: sans-serif;
	main {
		header {
			background-color: #ffcda0;
			color: #efefef;
			text-align: center;
			width: 100%;
			padding: 1em 0 1em 0;
			border-radius: 25px 25px 0 0;
			h1 {
				font-size: 3em;
			}
		}
		article {
			background-color: #eeeeee;
			border-radius: 0 0 25px 25px;
			margin: -1em auto;
			padding: 2em;
			text-align: left;
			p {
				line-height: 1.5;
			}
			li {
				line-height: 1.5;
			}
		}
	}
	a {
		color: #2a3517;
	}
	@media (max-width: 800px) {
	}
	footer {
		padding: 2em;
		color: #bfbfbf;
		text-align: center;
	}
}
