/* This is a comment. It doesn't do anything, it's just a note. */

/* Selects the <body> element */
body {
    font-family: Arial, sans-serif;
    background-color: #28282D;
    margin: 0;
    padding: 20px;
}

/* Selects the <h1> (header) element */
h1 {
    color: #FFFFFF;
    text-align: center;
}

/* Selects the <p> (paragraph) element */
p {
    color: #FFFFFF;
    text-align: center;
    font-size: 1.2em;
}