/* --- PAGE --- */
/* Body pretty much styles the entire website since in HTML everything is in body. */
body {
    /* Use sans-serif if Arial isn't installed on the user's computer. */
    font-family: Arial, sans-serif;
    /* The background color of the ENTIRE page. */
    background-color: #362f2f;
    /* The text color of the ENTIRE page. */
    color: #fff;
    /* Since margin is set to 0, there will be no space between the edge of the page and the content. */
    margin: 0;
}

/* --- HEADINGS --- */
h1 {
    /* Changes the color of the title. */
    color: #03b600;
}


/* Sets unordered lists to the left. */
ul {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
}