/* mark6.css */
body { background-image: url(schoolhouse.jpeg);
background-position: top left;
background-repeat: repeat-y;
background-attachment: fixed;
/* the following would do the same thing as 4 lines above: */
/* background: url(schoolhouse.jpeg) top left repeat-y fixed; */
color: blue;
background-color: silver;
font-family: Arial, sans-serif;
margin-left: 15em;
margin-right: 10em;
margin-top: 10em;
line-height: 2;}
blockquote {
text-align: center;
}
h1 { font-family: Verdana, sans-serif;
margin: 1em;
border: 3px dashed navy;
background-color: white;
padding: 0.5em;
font-variant: small-caps;}
p {
text-indent: 5em;
text-align: left;}
cite {
font-variant: small-caps;}
/* using a name class to make his name navy */
.name {
color: navy;}
/* this makes the first letter of each paragraph within the story class */
/* a little bit bigger, navy blue, and in Times New Roman font */
.story p:first-letter
{font-size: xx-large;
font-family: "Times New Roman";
color: navy;}