/* indexFormat.css */

body {
    background-color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* element selectors */
h1 {
    color: gray;
}

h3 {
    color: navy;
}

/* make the image stand out a bit */
img {
    border: 3px solid black;
}

/* links */
a {
    color: blue;
}

a:hover {
    color: red;
}

/* one ID example */
#footer {
    font-size: 12px;
    color: black;
}

/* one class example */
.highlight {
    background-color: white;
}
