body {
    display: flex;
    justify-content: center; /* Horizontal center */
    width: 100vw;
    height: 100vh;           /* Full viewport height */
    margin: 0;
    padding: 0;
    background: #0d0d0d !important;
    overflow-x: hidden;     /* prevent horizontal scrolling anywhere */

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-weight: 400;
    color: #eee; /* Light text on dark background */
    -webkit-font-smoothing: antialiased; /* smoother font rendering */
    -moz-osx-font-smoothing: grayscale;  /* smoother font rendering */
}

.page-container {
    width: 100%;
    max-width: 800px;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
}

/* Content */

#content {
    font-size: 18px;
    line-height: 1.6; /* Better line spacing for readability */
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    text-align: left; /* Left-align text inside content */
}

#content h1,
#content h2 {
    font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #fff; /* White headers to stand out */
}

#content p {
    margin-bottom: 20px;
    color: #ddd; /* Light gray for better readability */
    font-size: 16px;
    line-height: 1.8;
    transition: color 0.3s ease; /* Smooth color transition for interaction */
}

#content p:hover {
    color: #fff; /* Text color change on hover for interactivity */
}

/* Add subtle animations for content */
#content {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}