body {
    margin: 0;
    padding: 50px;
    font-family: 'Merriweather', serif;
    line-height: 1.6;
    letter-spacing: 0.5px;
    color: #000;
    background-color: hsl(0, 0%, 100%);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.footer {
    position: fixed; /* Sticks to the bottom of the viewport */
    bottom: 0;
    left: 0;
    width: 100%; /* Stretches across the screen */
    background-color: #333; /* Dark background */
    color: white; /* White text for contrast */
    text-align: center; /* Centers the text */
    padding: 10px 0; /* Adds some vertical spacing */
    font-size: 0.875rem; /* Makes the text small */
}

.simple-footer {
    width: 100%; /* Stretches across the screen */
    margin: 0 auto;
    text-align: center; /* Centers the text */
    padding: 10px 0; /* Adds some vertical spacing */
    font-size: 0.875rem; /* Makes the text small */
}

h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h2 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.25rem;
}

h4 {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 1.25rem;
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-indent: 2em;
    text-align: justify;
}

ul {
    text-indent: 1.2em;
    font-size: 1.2rem;
}

img {
    display: block;
    margin: 30px auto;
    max-width: 80%;
    height: auto;
}

figcaption {
    font-size: 0.9rem;
    text-align: center;
    color: #555;
    margin-top: -20px;
}

pre {
    margin-top: 20px;
    padding: 20px;
    background-color: #f8f8f8;
    border: 1px solid #e8e8e8;
}

.styled-quote {
    font-style: italic;
    color: #555;
    border-left: 4px solid #ccc;
    padding-left: 10px;
    margin: 20px 0;
}

q.styled-quote {
    quotes: "“" "”";
}

.centered-table {
    font-size: 1.1rem;
    margin: 0 auto; /* Horizontally centers the table */
    border-collapse: collapse; /* Optional: Removes gaps between table cells */
    width: 90%; /* Optional: Sets a specific width */
}

.centered-table tr {
    border: 1px solid #ddd;
}

/* Style the table */
.centered-table th,
.centered-table td {
    padding: 8px; /* Adds spacing inside cells */
    _border: 1px solid #ccc; /* Adds a border to cells */
}

/* Optional: Style the header */
.centered-table th {
    background-color: #f4f4f4; /* Light gray background for headers */
    font-weight: bold; /* Makes header text bold */
}

/* Indentation for levels */
.level-0 {
    padding-left: 0.5 !important; /* No indentation for the top level */
}

.level-1 {
    padding-left: 1rem !important;
}

.level-2 {
    padding-left: 2.5rem !important;
}

.level-3 {
    padding-left: 4rem !important;
}

.level-4 {
    padding-left: 5.5rem !important;
}

.level-5 {
    padding-left: 7rem !important;
}
.level-6 {
    padding-left: 8.5rem !important;
}
.level-7 {
    padding-left: 10rem !important;
}

/* Optional: Style dots */
.level-1::before,
.level-2::before,
.level-3::before,
.level-4::before,
.level-5::before,
.level-6::before,
.level-7::before {
    content: '•';
    margin-right: 5px;
}
