/*===
   our first CSS external style sheet!
   last modified: 2025-03-05
===*/

/* this is a CSS comment */

/*=== 
    style h1 and h2 elements to have text whose color
    is red
===*/

h1,h2
{
    color: rgb(255,0,0);
}
    
/*===
    style p elements to have text whose color is blue,
    to have a background color of yellow,
    and to have centered-aligned text
===*/

p
{
    color: #0000FF;
    background-color: yellow;
    text-align: center;    
}