Tips for Working with CSS

body {
    /* This turns the background-color of the website black and the text-color green */
    background-color: black;
    color: lightgreen;
    
    /* This centers the entire webpage */
    padding-left: 25%;
    padding-right: 25%;
}

/* This indents the text (p stands for paragraph in HTML) by 26 pixels*/
p {
  text-indent: 26px;
}