body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 15px; /* Adjust the font size as needed */
    line-height: 1.5;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
    background-color: #1e1e1e; /* Dark gray background */
    color: #e0e0e0; /* Light gray text */
}

h1 {
    font-size: 15px; /* Adjust the font size for headings if needed */
    word-wrap: break-word; /* Ensure long words or URLs break to fit the screen */
    color: #ffffff; /* White text for headings */
}

.container {
    padding: 12px;
    box-sizing: border-box; /* Ensure padding is included in the width */
    max-width: 100%; /* Ensure container fits the viewport width */
    background-color: #2e2e2e; /* Slightly lighter gray background for the container */
    border-radius: 1px; /* Optional: rounded corners for the container */
    margin: auto; /* Center the container */
}
