/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Georgia', serif;
    background-color: #1a1a1a;
    color: #f4e1c1;
    line-height: 1.6;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Header Styling */
header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 3rem;
    color: #ff8c00;
}

header p {
    font-size: 1.2rem;
    color: #d3a15c;
}

/* Main Content Styling */
main {
    /* Safe fallback: background color if image is missing */
    background-color: #2b2b2b; 
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    /* Optional: only use image if it exists */
    background-image: url('parchment-texture.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* Entry Styling */
.entry {
    margin-bottom: 30px;
}

.entry h2 {
    font-size: 2rem;
    color: #ff8c00;
    border-bottom: 2px solid #d3a15c;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.entry p {
    font-size: 1.1rem;
    color: #f4e1c1;
}

/* Footer Styling */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 1rem;
    color: #d3a15c;
}
