body, html {
    font-family: 'JetBrains Mono', monospace;
    background-color: #000000;
    color: #ffffff;
    display: grid;
    justify-content: center;
    align-items: flex-start;
    text-align: left; /
    overflow-x: hidden;
}
/* Container to hold the content centrally with proper width */
.container {
    max-width: 800px; /* Limit the width for better readability */
    margin: 50px auto; /* Center horizontally with margin */
    padding: 20px;
    line-height: 1.6; /* Improve readability with line spacing */
}

/* Headings */
h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: bold;
}

h2, h3 {
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 15px;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

/* Paragraphs */
p {
    font-size: 1.125rem; /* Slightly increase the font size for better readability */
    margin-bottom: 20px;
}

/* Lists */
ul {
    padding-left: 20px;
}

li {
    font-size: 1.125rem;
    margin-bottom: 10px;
}

/* Links */
a {
    color: #28b1ff; /* Link color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
