/* External stylesheet: style.css */

/* General font and body color */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 20px;
    line-height: 1.6;
}

/* Headings */
h1 {
    color: #2c3e50;
    text-align: center;
}

h2 {
    color: #444;
    margin-top: 30px;
}

/* Lists */
ul, ol {
    background-color: #fff;
    padding: 15px 25px;
    border: 1px solid #ddd;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto 20px auto;
}

/* Paragraphs */
p {
    max-width: 700px;
    margin: 0 auto 20px auto;
    font-size: 1.1em;
}

/* List items */
li {
    margin-bottom: 8px;
}

/* Highlighted span */
.highlight {
    background-color: yellow;
}
