/* Basic styling for the body element */
body {
    font-family: Georgia, serif;
    background-color: #16120f; /* Deep, rich brown, like the inside of an old library */
    margin: 5px;
    padding: 5px;
    line-height: 1.875;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #c2b79b; /* Warm, faded parchment-like text, reminiscent of old books */
}

/* Styling for the main heading */
h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #dac7a3; /* Soft ivory, like well-worn book pages */
}

/* Content box styling */
.content {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    background-color: #2a211c; /* Dark walnut brown, like worn leather or wooden shelves */
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4); /* Deeper shadow for a cozy, secluded feel */
    border-radius: 6px;
    border: 1px solid #8b6f48; /* Antique goldish-brown for a vintage touch */
}

/* Paragraph text styling */
p {
    margin: 16px 0;
    color: #c2b79b; /* Faded parchment tone for readability */
}
