body {
    font-family: "Lucida Console", "Courier New", monospace;
    font-weight: 800
}
body {
    background-color: #000000;
    color: #FFFFFF;
}

.page-container {
  max-width: 300px; /* The maximum width the content will reach */
  max-height: 300px;
  width: 100%;       /* Allows the container to be fluid on smaller screens */
  margin: 0 auto;    /* Centers the container horizontally on the page */
}
.scrollable-div {
    height: 300px; /* Or max-height: 80vh; */
    overflow-y: auto; /* Use auto to show scrollbar only when needed */
}






