body {
    background-color: #FFFFFF;
    color: #666666;
    font-family: Arial, Helvetica, sans-serif; /* Added font-family declaration */
}

header {
    background-color: #00B386;
    color: #FFFFFF;
    background-image: url('pasture.png'); /* Added background image declaration */
    background-repeat: no-repeat; /* Prevent background image repetition */
    background-position: right; /* Align background image to the right */
    line-height: 400%; /* Set line-height to 400% */
    text-indent: 1em; /* Set text-indent to 1em */
}

/* Styles for the nav element */
nav {
    background-color: #70DBDB;
    font-weight: bold; /* Added font-weight declaration for bold text */
}

/* Styles to eliminate the display of the underline for hyperlinks in the nav */
nav a {
    text-decoration: none;
}

/* Styles for h1, h2, and h3 elements to display text in Times New Roman, Georgia, or serif font face */
h1, h2, h3 {
    font-family: 'Times New Roman', Georgia, serif;
}

/* Styles to display marker.gif as the list marker (bullet) in the unordered list */
ul {
    list-style-image: url('marker.gif');
}

/* Styles for the footer element */
footer {
    font-size: 75%; /* Set font size to 75% */
    font-style: italic; /* Set font style to italic */
    text-align: center; /* Center-align text */
    font-family: 'Georgia', 'Times New Roman', serif; /* Font face declaration */
}

/* Styles for the barn class */
.barn {
    color: #70DBDB;
    font-weight: bold; /* Added font-weight declaration for bold text */
}

/* Styles for the contact id selector */
#contact {
    font-size: 90%; /* Set font size to 90% */
}
