<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* simple.css */

/* Use tag name like body without any angle brackets */

/* Style the larger units like body first, then the more specific parts */

body {
    background-color: #d0e4fe;
    margin-left:5%;   /* avoid crowded look on left side of page */
}

h1 {
    color: darkgreen;   /* text color */
    text-align: center;
}

p {
    font-family: "Times New Roman";
    font-size: 14px;
}</pre></body></html>