@charset "UTF-8";

/* Ancient Roman Republic Theme CSS */

body {
    background-color: #fff; /* Marble or off-white background */
    color: #443e3e; /* Dark grey for text, reminiscent of stone inscriptions */
    font-family: 'Times New Roman', serif; /* Traditional, formal font */
}

h1, h2, h3 {
    color: #8a2e2e; /* Rich red for headings, reminiscent of Roman cloaks */
    text-align: center;
    border-bottom: 2px solid #dcb67a; /* Gold underlines for a regal feel */
    padding-bottom: 10px;
}

a {
    color: #5c5a56; /* Subdued gold for links, to keep the palette sophisticated */
}

.navbar, .footer {
    background-color: #443e3e; /* Dark grey, stone-like */
    color: #fff;
    padding: 10px;
    text-align: center;
}

.container {
    background-color: #f4f4f4; /* Light background for content, like aged parchment */
    border: 1px solid #dcb67a; /* Gold borders for sections */
    padding: 20px;
    margin-top: 20px;
}

.button {
    background-color: #8a2e2e; /* Rich red for buttons */
    color: #fff;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #692121; /* Darken button on hover for interactivity */
}

/* Consider adding background images with marble or column textures to enhance the theme */