/*===
    our first external style sheet! 

    can validate this at: 
        https://jigsaw.w3.org/css-validator/
    using the URL:
        https://nrs-projects.humboldt.edu/~st10/s24cs328/328lect07-1/328lect07-1.css    

    by: Sharon Tuttle
    last modified: 2024-03-01
===*/

/*=== style paragraphs to have red text and yellow background ===*/

p
{
    color: red;
    background-color: yellow;
}

/*=== style heading elements to have green text ===*/

h1, h2,	h3, h4,	h5, h6
{
    color: green;
}

/*=== 
    style li elements to have a background color expressed
        as a hexadecimal color code (here, for a pale yellow)
===*/

li
{
    background-color: #ffffdc;
}

/*=== 
    an element with class="center" will be styled with this;
        should work for inline elements to center their
        text within their container
===*/

.center
{
    text-align: center;
}

/*===
    the at-most-one element with id="style_header_para" will
        be styled with this; should make the font weight
        of its text display as bold
===*/

#style_header_para
{
    font-weight: bold;
}