h1, p {
    text-align: center;
}

/* Make h1 red */
h1 {
    color: red;
}

/* Make p blue */
p {
    color: blue;
}

/* Set the background to green */
body {
    background-color: green;
}
