/* Centers the entire page content */
body {
    background-color: ##ffffff; /* Light gray background */
    margin: 0;
    display: flex;
    justify-content: center;
    font-family: "Times New Roman", Times, serif;
}

/* The main box that holds the content */
.page-container {
    background-color: #ffffff; /* White center container */
    max-width: 95%;
    width: 90%;
    text-align: left; /* Aligns text normally within the centered box */
}
.content-wrapper {
    display: flex;          /* This aligns the items in a row */
    align-items: flex-start; /* Keeps text aligned to the top of the image */
    gap: 20px;              /* Adds space between the image and the text */
    margin: 20px auto;      /* Centers the entire block on the page */
    max-width: 90%;         /* Keeps the layout from being too wide */
}

.content-wrapper img {
    max-width: 70%;         /* Adjust this percentage based on your preferred image size */
    height: auto;           /* Maintains original image proportions */
}

.history-content {
    flex: 1;                /* Allows the text to fill the remaining space */
    text-align: left;       /* Keeps history text left-aligned */
}
header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #000;
}

header h1 {
    font-size: 1.8rem;
    margin-bottom: 0px;
    margin-top: 5px;
}

header h4 {
    margin-bottom: 0px;
    margin-top: 5px;
}

.history-content p {
    margin-bottom: 5px;
    line-height: 1.6;
}

/* Centers the navigation links */
.centered-nav {
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
}

.centered-nav a {
    color: #0000ff;
    text-decoration: underline;
    margin: 0 10px;
}

.divider { color: #888; }


footer {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
}

/* Ensures it remains centered and readable on mobile phones */
@media (max-width: 600px) {
    .page-container { padding: 20px; }
    .centered-nav a { display: block; margin: 10px 0; }
    .divider { display: none; }
}