/* Reset some default margin and padding */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Set a background color, center the content, and limit the max width */
body {
    background-color: #f0f0f0; /* Light gray background */
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Style the header */
header {
    background-color: dodgerblue;
    padding: 20px;
    color: whitesmoke;
}

/* Style the title */
h1 {
    font-size: 48px;
    font-family: 'Josefin Sans', sans-serif;
}

/* Style the subtitle with margin for spacing */
.subtitle {
    font-size: 24px;
    font-family: 'Josefin Sans', sans-serif;
    color: whitesmoke;
    font-style: italic;
    margin-bottom: 20px; /* Add space below the subtitle */
}

/* Style the second-level headings */
h2 {
    font-size: 32px;
    color: dodgerblue;
    font-family: 'Josefin Sans', sans-serif;
}

/* Style the opening text paragraph with margin for spacing */
#opening-text {
    font-size: 20px;
    font-family: 'Roboto Serif', serif;
    margin-top: 20px; /* Add space above the opening text */
    margin-bottom: 20px; /* Add space below the opening text */
}

/* Style the main content paragraphs with margin for spacing */
p {
    font-size: 20px;
    font-family: 'Roboto Serif', serif;
    margin-bottom: 20px; /* Add space below each paragraph */
}

/* Add margin to the first paragraph in the main section */
main p:first-child {
    margin-top: 20px; /* Add space below the header */
}
