* { margin: 0px; padding: 0px; }

//BUILT-IN STYLES

html {
	background-color: white;
	}
	
body {
	background-color: black;
	}
	
#grid-box	{
	border-color: black;
	//will construct other properties dynamically
	}
	
#image-box	{
	//will construct other properties dynamically
	}
	
#nav-box	{
	text-align: center;
	border-color: black;
	z-index: 99;
	
	}
  
div	{
	font-family: 'Noto Sans', sans-serif;
	font-size: 1.5em;
	line-height: 1.8;
	border-style: solid;
	border-color: silver;
	border-width: 1px;
	position: absolute;
	text-align: left;
	color: white;
	height: auto;
	margin: 0 auto;
	}
	
p	{
	margin-bottom: 1em;
	}
	
a	{
	text-decoration: none;
	color: #FF0000;
	}

a:hover	{
	color: white;
	}

	
