/* Page Fonts */

body {
 font-family: 'Ubuntu Mono', monospace;
}

/* Page Colors */ 
body {
    background-color: rgba(0,0,0,0.85); color: rgb(0,240,0);
}

/* unvisited link */
a:link {
    color: rgba(240, 230, 140, 1);
}

/* visited link */
a:visited {
    color: rgb(255, 255, 0);
}

/* mouse over link */
a:hover {
    color: rgba(255, 182, 193, 0.99);
}

/* selected link */
a:active {
    color: rgba(229, 150, 0, 0.99);
}

/* Paragraph */
p {
    display: block;
    margin-top: 0.6em;
    margin-bottom: 0em;
    margin-left: 10px;
    margin-right: 10px;
}


h1 {
    font-size:200%; font-weight: bold; text-transform: uppercase; margin-top: 0.6em;
}

h2 {
    font-size:150%; font-weight: bold;
}

h3 {
    font-size:130%; font-weight: bold; font-variant: small-caps;
}

hr.brand {
   display: block;
    height: 1px;
    border: 0;
    border-top: 3px solid rgb(160,16,0);
    border-bottom: 1px solid rgb(160,16,0);
    margin: 1em 0;
    padding: 0; 
}

hr.bolder {
	border-top: 4px double rgb(160,16,0);
}

hr.tinier {
	 border-top: 1px dotted gray;
}

hr.schlagbaum {
	border: none;
        background-color: White;
	border-top: 5px dashed Red; 
}

