
/* The * is a wildcard and basically states that the entire document should have zero margin */
* {
	margin: 0;
}

/* setting the entire html doc to have a height of 100% of the viewport */
html{
	height: 100%;
}

/* 
Basic body settings - this is where you chaneg the font used throught the site. The quoted font is first in line, and if the browser cvan't find that font,
then it will report to the next in line. Try to use points (pt) for font sizes as people's resolution is different.
*/
body {
	height: 100%;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 10pt;
	background-color:black;
    }
	
/* main href's (links) */
a:link {
	color: white;
}

a:active {
	color: white;
}

a:hover {
	color: white;
}

a:visited {
	color: white;
}

#hr
{
	color: white !important;
}
.xabula-header
{
	font-size: 45px;
	color: white;
}

.xabula-tagline
{
	font-size: 70px;
	color: white;
	font-style: italic;
}


.project-box
{
	border: solid thin #F0DFDF;
	padding: 50px;
}







