html {
	font-family:"Courier New", Courier, monospace;
}

body {
/* Location of the image */
  background-image: url(../images/fatso.jpg);
  
  /* Background image is centered vertically and horizontally at all times */
  background-position: center center;
  
  /* Background image doesn't tile */
  background-repeat: no-repeat;
  
  /* Background image is fixed in the viewport so that it doesn't move when 
     the content's height is greater than the image's height */
  background-attachment: fixed;
  
  /* This is what makes the background image rescale based
     on the container's size */
  background-size: cover;
  
  /* Set a background color that will be displayed
     while the background image is loading */
  background-color: #464646;
}
h1 {
	font-size:2.2em;
}
h2 {
	font-size:1.4em;
}
h3 {
	font-weight:normal;
}
h4 {
	color:#e5881d;
		font-weight:normal;
}
hr {
	color:#ffffff;
}
a {
	text-decoration:none;
	color:#29557c;
}
a:hover {
	text-decoration:underline;
}
p {
line-height:1.5;
}

.date {
	color:#f29563;
}

.sitetitle {
	font-size:1em;
}


