

/*
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 {
   
    /*background-color: green;*/
    /*padding: 30px;*/
    /*margin-top: 30px;*/
    /*margin-bottom: 30px;*/
    /*margin-left: 300px;*/
    /*margin-right: 300px;*/
}

body {
    color: #333333;
    background-color: #333333;
}

#content {
    width: 960px;
    height: auto;
    padding: 15px;
    margin: 0 auto;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    border: 1px solid black;
    background-color:#ffeeee ;
    display: block;
}


li {
    color: purple;
}









