  /* Just some nice colors */
body {
	background: #000;
	color: white;
	font-size: xx-large;
}

a:link, a:visited {
	color: inherit;
	text-decoration: none;
	font-family: "Comic Sans MS";
}

  /* Vertical centering: make div as large as viewport and use table layout */
div.container {
    top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%;
    position: fixed; 
    display: table;
}

p {	
    display: table-cell;
	vertical-align: middle;
	text-align: center;
}

  /* Horizontal centering of image: set left & right margins to 'auto' */
img.displayed {
	display: block;
	margin: 1em auto;
}
