body {
    font-family: Georgia, 'Times New Roman', Times, serif; /* Updated to use Georgia */
    margin: 0;
    padding: 0;
    background-color: white;
    color: #1e1e1e;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header, footer {
    background-color: white;
    text-align: center;
    padding: 1em 0;
    color: #1e1e1e;
}

header.hidden-header {
    height: 60px; /* Adjust the height as needed */
    visibility: visible; /* Makes the header invisible but keeps the space */
}

main {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: flex-start;
}

.content-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
}

.blog-list-container {
    flex: 1;
    text-align: left;
    padding-right: 20px;
    max-width: 600px;
    border-right: 1px solid #ccc; /* Vertical line separating blog list and about me */
}

.blog-list {
    list-style-type: none;
    padding: 0;
}

.blog-list li {
    margin: 1em 0;
    text-align: left;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1em;
}

.blog-list li:last-child {
    border-bottom: none;
}

.blog-list a {
    text-decoration: none;
    color: #1e1e1e;
    font-size: 1.5em;
    cursor: pointer;
}

.blog-list a:hover {
    text-decoration: none;
}

.blog-list h2 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; /* Updated to use Helvetica Neue */
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 0.5em;
    color: #202020;
}

.blog-list .date, .blog-list .keywords, .blog-list p {
    font-family: Georgia, 'Times New Roman', Times, serif; /* Updated to use Georgia */
    font-size: 0.75em;
    line-height: 1.2em; /* Reduced line spacing */
}

.blog-list .date-keywords {
    display: flex;
    justify-content: space-between;
}

.about-me {
    width: 200px;
    flex-shrink: 0;
    padding-left: 20px;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 20px; /* Distance from the top when scrolling */
    align-self: flex-start; /* Aligns the about me section to the start of the flex container */
}

.about-me img.about-me-photo {
    width: 100%; /* Adjust size as needed */
    height: auto;
    max-width: 300px; /* Set a maximum width */
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.about-me h2 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; /* Updated to use Helvetica Neue */
    font-weight: bold;
    color: #202020;
}

.about-me p {
    font-family: Georgia, 'Times New Roman', Times, serif; /* Updated to use Georgia */
    font-size: 1em;
    color: #1e1e1e;
}

.contact-info {
    margin-top: 20px;
    text-align: left; /* Center the contact info */
}

.contact-logo {
    width: 30px; /* Adjust size as needed */
    height: auto;
    margin: 5px;
}

.contact-info p {
    margin: 5px 0;
}

.blog-content {
    max-width: 700px;
    width: 100%;
    margin: 0 20px;
    text-align: justify;
}

.blog-content h1, .blog-content h2, .blog-content h3 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; /* Updated to use Helvetica Neue */
    font-weight: bold;
    color: #202020;
    text-align: center; /* Centering the titles */
}

.blog-content p {
    font-family: Georgia, 'Times New Roman', Times, serif; /* Updated to use Georgia */
    font-size: 1.25em;
    color: #1e1e1e;
    text-align: justify;
}

.blog-content .date, .blog-content .keywords {
    text-align: center; /* Centering the date and keywords */
}

.blog-content .date-keywords {
    display: flex;
    justify-content: center; /* Centering the date and keywords container */
    margin-bottom: 1em;
}

.blog-content hr {
    border: 0;
    height: 1px;
    background: #ccc;
    margin: 2em 0; /* Space around the horizontal line */
}

.blog-content ul, .blog-content ol {
    margin-left: 20px;
    font-family: Georgia, 'Times New Roman', Times, serif; /* Updated to use Georgia */
    font-size: 1.25em;
    color: #1e1e1e;
}

.blog-content img, .blog-content .math {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

/* Media Queries for Responsive Design */
@media (max-width: 800px) {
    .content-container {
        flex-direction: column;
    }

    .about-me {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
        border-top: 1px solid #ccc; /* Horizontal line for separation */
        order: -1; /* Ensure About Me section is above the blog list */
        position: relative; /* Remove sticky positioning for small screens */
        top: 0; /* Reset top position for small screens */
    }

    .blog-list-container {
        border-right: none;
        padding-right: 0;
    }
}

.start-link {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; /* Font family for the start link */
    font-weight: 900; /* Heavy bold text */
    text-align: center; /* Centered text */
    display: block; /* Display block to ensure full width */
    margin-bottom: 1em; /* Space below the link */
    text-decoration: none; /* Remove underline */
    font-size: 1em; /* Font size similar to normal text */
    color: hsl(0, 0%, 13%); /* Font color */
}
.info-table {
    width: 100%;
    max-width: 700px;
    margin: 20px auto;
    border-collapse: collapse;
}

.info-table td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1em;
    color: #1e1e1e;
}

.info-table tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.info-table tr:nth-child(even) {
    background-color: #e9e9e9;
}

