body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
    background-color: #262929; /* Dark theme background color */
    color: #f2f2f2; /* Text color for dark theme */
    min-height: 100vh; /* Ensure content takes up at least the full viewport height */
    display: flex;
    flex-direction: column;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 20px;
}

header {
    background-color: #262929; /* Change header background color to match the content */
    padding: 10px 0;
    text-align: center; /* Center align the content within the header */
}

#header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%; /* Extend header content to the edges */
    padding: 0 20px; /* Add padding to the sides of the text */
}

#header-left,
#header-right {
    font-size: 24px;
    font-weight: bold;
    padding: 0 20px; /* Add more padding to the header text */
}

a {
    position: relative;
    font-family: "Helvetica Neue", sans-serif; /* Elegant sans-serif font for "More" */
    color: #f2f2f2; /* Text color for the header */
    font-weight: 500;
    letter-spacing: 1.5px;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-decoration-color: #00ffff8f;
    padding: 6px;
    /* background: linear-gradient(90deg, #262929, #262929); */
    z-index: 1;
}

a:visited {
    color: #AAA;
    text-decoration-color: #04ff9f8c;
}

a::before{
    position: absolute;
    content: '';
    top:0;
    right: 0;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(90deg, #00ffff8f, #04ff9f8c);
    z-index: -1;
    transition: opacity 0.5s;
    opacity: 0;
}

a:hover::before{
    opacity: 1;
}

a:hover {
    /* background: linear-gradient(90deg, #00ffff8f, rgba(4, 255, 159, 0.549)); */
    text-decoration-color: #fff;
    color: #fff;
}

#header-left {
    font-family: "Helvetica Neue", sans-serif; /* Elegant sans-serif font for "More" */
    color: #f2f2f2; /* Text color for the header */
    font-weight: 500;
    letter-spacing: 1.5px;
}

#header-right {
    font-family: Georgia, serif; /* Traditional serif font for "Nick Rostant" */
    color: #f2f2f2; /* Text color for the header */
    font-weight: 300;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 30px;
}

#header-subtitle {
    font-size: 10px;
    font-weight: 100;
    color: #666666;
}

#content {
    max-width: 60%; /* Make the content wider */
    min-width: 50%; /* Set a minimum width for the content */
    margin: 20px auto; /* Center the content */
    padding: 20px;
    text-align: left; /* Left-align the content */
}

#content h2 {
    color: #f2f2f2; /* Headings color for dark theme */
}

#content p {
    line-height: 1.6;
    margin: 40px 0;
}

#image {
    max-width: 100%;
    height: auto;
    margin: 20px 0; /* Add margin to the image */
}

footer {
    background-color: #262929; /* Same background color as the content */
    text-align: center;
    padding: 10px 0;
    margin-top: auto; /* Push the footer to the bottom */
}

.footer-line {
    background-color: #424242; /* Grey line color */
    height: 1px; /* Thin line */
    width: 90%; /* 90% of the window width */
    margin: 0 auto;
}

footer p {
    color: #424242; /* Slightly lighter grey text color */
    font-size: 14px;
}

ol {
    list-style-type: upper-roman;;
    list-style-position: outside;
    padding: 25px;
    
}

ul {
    list-style-type:none;
    padding: 0px;
    
}
li{
    margin: 15px;
    padding-top: 25px;
    font-style: normal;
}

table {
    padding: 5px;
    width: 100%;
}

td, th {
    border-bottom: 1px solid #424242;
    padding: 10px;
}



.content-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.footnote-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}


.subtitle {
    font-size: 15px;
    font-style: oblique;
    padding-top: 0;
    margin-top: 0;
}