/* Page color (of text) and background */

body {
    color: MidnightBlue;
    background-color: WhiteSmoke;
}

/* Page margins */

body {
    margin-left: 10%;
    margin-right: 10%;
}

/* Text properties of headings and paragraphs */

h1, h2 {
    text-align: center;
    font-variant: small-caps;
    font-family: sans-serif;
}

p {
    font-family: sans-serif;
}

/* Emphasize terms */

em {
    background-color: yellow;
}

/* Using the id attribute */

p#credit {
    text-align: right;
    font-size: small;
    font-style: italic;
    background-color: white;
    padding: 0.25in;
    border: thin dotted black;
}


/* Using the class attribute */

p.roman {
    text-indent: 4ex;
    font-style: italic;
    text-transform: uppercase;
    margin: 0.5in;
    border: medium solid DarkRed;
    padding: 0.2in;
}
