body {
    margin: 0;
    padding: 0;
    background: #f4e4bc; /* Parchment-like background */
    font-family: 'Playfair Display', serif;
    color: #333;
}

.parchment {
    max-width: 800px;
    margin: 40px auto;
    background: url('https://www.transparenttextures.com/patterns/old-paper.png'), #f8ecd1;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #8b6f47;
}

header {
    text-align: center;
    border-bottom: 2px solid #8b6f47;
    padding-bottom: 20px;
}

h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    color: #2e2e2e;
    margin: 0;
}

h2 {
    font-size: 24px;
    color: #4a3728;
    margin: 10px 0 0;
}

h3 {
    font-size: 28px;
    color: #4a3728;
    border-bottom: 1px solid #8b6f47;
    padding-bottom: 10px;
    margin-top: 30px;
}

h4 {
    font-size: 20px;
    color: #4a3728;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
    margin: 15px 0;
}

article {
    margin-bottom: 30px;
}

.preamble p {
    text-indent: 30px;
}

.conclusion p {
    font-style: italic;
    text-align: center;
}

footer {
    text-align: center;
    border-top: 2px solid #8b6f47;
    padding-top: 20px;
    margin-top: 40px;
    font-size: 14px;
    color: #4a3728;
}

/* Responsive design */
@media (max-width: 600px) {
    .parchment {
        margin: 20px;
        padding: 20px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 24px;
    }

    p {
        font-size: 14px;
    }
}

