/* Paul's Style Sheet */

/* Body Format (incl vertical lines in Nav*/

  body {
    background-color: slategray;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color:seashell;
    font-size: 150%;
    margin-left: 5%;
    margin-right: 10%}
  
/* -------------------- Hyperlinks format -------------------- */

  a {font-family: Arial, Helvetica, sans-serif;}

  a:link {
    color: lime;
    background-color: transparent;
    text-decoration: none;}

  a:visited {
    color: lime;
    background-color: transparent;
    text-decoration: none;}

  a:hover {
    color: yellow;
    background-color: transparent;
    text-decoration: none;}

  a:active {
    color: blue;
    background-color: transparent;
    text-decoration: none;}

/* -------------------- image format -------------------- */

img {
  border: 5px solid goldenrod;
}

/* -------------------- Headings format -------------------- */

  h1 {
    font-family: garamond;
    line-height: 80%;
    color: green;}

/* -------------------- Paragraph format -------------------- */

  p { 
    font-family: garamond;
    line-height: 100%;
    color:floralwhite;}

/* -------------------- Indent me -------------------- */

.indent-me {margin-left: 50px}

/* -------------------- linespace me -------------------- */

.line-space-me {line-height: 1.6}

/* -------------------- Footer format -------------------- */

footer {
  font-size: 80%;}

/* useful
  
  font-size: 200%;
  
  <h1 style="border:2px solid Tomato;">Hello World</h1>
  
*/

