/* style.css */

/*2345678901234567890123456789012345678901234567890123456789012345678901234567*/
/* (80 characters wide is a good idea for all your documents.) */

/* HEY, check out these comments!!  You can comment any amount of text as long
   as it's enclosed by the forward slash and asterisk!! */

body {
	background-color: #000000;

}

h1.my_header {
	font-family: arial, sans-serif;
	/* CSS will do it's best to display this font, but if (lol) the user
	   doesn't have "arial" it will find the closest thing */

	font-weight: bold;
	/* It wasn't wrong to use the <b> tag like you did, but doing it this
	   way and/or using the <strong> tag instead is preferred.  */

	font-size: large;
	/* Always make things relatively sized to everything else, in case the
	   user wants to use their browser to make the text bigger or smaller.
	   If you use a fixed font size, you rob them of this freedom, which
	   will annoy those with poor eyesight. */

	color: #99CC33;

	line-height: .25em;
	/* This should make everything "squished together" like you had it. */

	margin-top: 1.125em;
	/* ...and this will make sure that there's a margin at the top,
	   also like you had it! */

}

p.my_sub_header {
	font-family: arial, sans-serif;
	font-weight: bold;
	font-size: x-small;
	color: #FFFFFF;
	line-height: 0em;
	margin-bottom: 3em;
}

p.my_url_link {
	font-family: arial, sans-serif;
	font-weight: bold;
	font-size: small;
	color: #FFFFFF;
	line-height: 0em
	margin-bottom: 3em;
}
