body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.container {
    width: 60%;
    /* Decrease the width to create more space on the sides */
    margin: 0 auto;
    /* Center the container horizontally */
    overflow: hidden;
}

header {
    background: #4955e1ec;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #77aaff 3px solid;
}

header h1 {
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    font-style: italic;
    font-size: 2em;
}



header h1 a.no-color-change {
    color: inherit;
    text-decoration: none;
}

section {
    padding: 20px;
    background: #fff;
    margin: 20px 0;
}

h2 {
    color: #000000;
}

h3 {
    color: #000000;
    display: inline-block;
    border-bottom: 2px solid #000000;
    /* Adjust the color and thickness as needed */
    padding-bottom: 4px;
    /* Optional: Adds some space between the text and the underline */
    margin-bottom: 0;
    /* This removes the default margin below the heading */
}

p {
    line-height: 1.5;
    /* Adjust this value to increase or decrease line spacing */
    margin-bottom: 35px;
}

code {
    font-size: 16px;
    /* Font size for code elements */
}

pre {
    background: #f3f5ff;
    padding: 10px;
    border: 1px solid #ddd;
    overflow-x: auto;
}

img {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    /* Adds 20px of space above and below the image */
    border: 2px solid #000;
    /* Adds a 2px solid black border around the image */
    display: block; /* Make the image a block element */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table td {
    font-size: 16px;
    /* Font size for table data */
}

table.narrow-table {
    width: 50%;
    /* Set the width of the narrow table */
    margin: 0 auto;
    /* Center the table within the container */
}

table,
th,
td {
    border: 1px solid #dddddd;
}

th,
td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #d3d4ff;
}

caption {
    caption-side: top;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
    /* Aligns the caption to the left */
}

figure {
    margin: 30px 0;
}

figcaption {
    font-size: 14px;
    text-align: left;
    /* Aligns the image caption to the left */
    font-style: italic;
    margin-top: 3px;
}

a {
    color: blue; /* Sets the link color to blue */
    text-decoration: none; /* Removes the underline from the link */
}

a:visited {
    color: blue; /* Sets the visited link color to purple */
}

a:hover {
    font-style: italic; /* Makes the text italic on hover */
    text-decoration: underline; /* Adds an underline on hover */
}