/* screen.css for display on computer screen */

body       { padding: 15px;
             font-family: Verdana, Helvetica, Arial, sans-serif;
	     font-size: small;
             margin-left: 10%;
             margin-right: 10%;
             background-color: blue;
             color: black;
           }

a:link     { color: black; text-decoration: underline; }
a:visited  { color: black; text-decoration: underline; }
a:hover    { color: red;   text-decoration: underline; }
a:active   { color: black; text-decoration: underline; }

h1         { font-family: Georgia, Times, serif; }

em         { text-transform: uppercase; }

#header    { border: 1px solid black;
             background-color: white;
             color: black;
             text-align: center;
           }

#tagline p { font-style: italic; }

#body      { padding: 2em;
             border: 1px solid black;
             background-color: white;
             color: black;
           }

#footer    { text-align: center; }
