/* HTML display-role uniform reset for all browsers */
html, body, div, span, object, iframe,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
aside, canvas, details, embed, 
figure, figcaption, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 3px;
	padding: 3px;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, main, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}


/* website specific settings */

html {
	background:black;
	border-radius:5px;
}

body {
	width:98%;
	padding:5px;
	margin:2px auto;
	border-radius:5px;
	color:ghostwhite ;
	background:#202020;
} 

a.plain {
	text-decoration: none;
}

a {
	color: dodgerblue;
}

a:hover {
	color: yellow;
	background:#404040;
}


.bigorange {
	color:darkorange;
	font-size: 2em;
}

.bigblue {
	color:dodgerblue;
	font-size: 2em;
}

.biggreen {
	color:limegreen;
	font-size: 2em;
}

/* simulates the retro PC green monochrome CRT */
.crt_green {
	color:#33ff33;
	background-color: #001a00;
	padding: 15px;
}

.crt_green hr {
        color:#228822;
        border-style:dashed;
}

/* simulates the retro PC amber monochrome CRT */
.crt_amber {
	color:#fc9505;
	background-color: #140b05;
	padding: 15px;
}

