/* Main styles for the text page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #121212; /* Dark background */
    color: #ffffff; /* White text */
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

#content {
    font-size: 18px;
    text-align: left;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    white-space: pre-line; /* Preserves line breaks from the HTML */
}

#content p {
    margin-bottom: 1.5em;
}

/* Media queries for responsive text sizing */
@media (max-width: 768px) {
    #content {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    #content {
        font-size: 14px;
    }
}
