/* CSS, "style" means everything that defines how your Web pages look. */
/* Main Style Sheet */

/* Default background color and default text color for the page. Can be overridden. */
body {
    background-color: #688db3;
    color: #000080;
}
/* Specifies heading 1 font to be 40% bigger, bold and italic. */
h1 {
    font-size: 140%;
    font-weight: bold;
    font-style: italic;
}
/* Specifies heading 2 font to be 30% bigger, bold and small-caps */
h2 {
    font-size: 130%;
    font-weight: bold;
    font-variant: small-caps;
}
/* Specifies heading 3 font to be 20% bigger and bold */
h3 {
    font-size: 120%;
    font-weight: bold;
}
/* Specifies heading  font to be 10% bigger and bold */
h4 {
    font-size: 110%;
    font-weight: bold;
}
/* Anchor link - unseen */
a:link {
    color: #3cd29a;
    font-family: Times, "Times New Roman", serif;
    font-weight: bold;
}
/* Anchor link - has been seen */
a:visited {
    color: #cf0000;
    font-weight: bold;
    font-style: italic;
    font-family: Courier, "Courier New", monospace;
}
/* Anchor link - Text changes color when mouse is over selectable item. */
a:hover {
    color: #ff0080;
    font-weight: bold;
}
/*  */
.center {
    text-align: center;
}

