

/*
Here's the basic template for css in pseudocode:
selector {
    property: value;
    property: value;
}
*/


/*change all paragraphs to have red text with a green background. */
p {
    color: red;
    background-color: green;
}

body {
    background-color: #ffffdd;
}
