/*** 

This stylesheet has seen a minor revamp and now has different default padding and looks. The old appearance can be used via the "old" class.

***/

body {
	font-family: "FORGOTMYBAZOOKAATHOME";
	font-size: 18px;
	background: #8dd0fb url("/bgcds.jpg"); /*Replace this with your own background image.*/
	text-align: center; /*Text is centered by default.*/
	background-size: auto;
	background-attachment: fixed;
  background-position:center;

}

li {
  text-align: left; /*You can change this, but centered lists can look kind of weird.*/
  margin-left: 18px
  }

h1 {
  text-align: center;
  font-size: 18px;
  letter-spacing:4px;
  }
  
/*Use as the class of spans or divs you want to have normal left-aligned text.*/
/*You can combine classes by putting them together with a space, i.e. <div class="box left"> will be a div using "box" and "left" styles.*/
.left {
  text-align:center;
  }

/*A box that stays at a fixed height and scrolls when content gets too long.*/
.box-noscroll {
  margin: 2% auto 4% auto;
	background-color: #ffffff;
	border: 5px solid #979797;
	width: 32em;
	padding: 1em 4em;
}