body {
    font-family: Arial, sans-serif;
    font-size: 20px;
    margin: 0;
    padding: 2rem;
    background-color: #f4f4f4;
    color: #333;
}

/* Container for horizontal scrolling */
.scroll-container {
    width: 100%; /* Full width */
    overflow-x: auto; /* Enable horizontal scroll */
    white-space: nowrap; /* Prevent text from wrapping */
    border: 1px solid #ccc; /* Optional border */
    padding: 10px;
    box-sizing: border-box;
    background: #f9f9f9;
}

/* Optional: style the text */
.scroll-text {
    font-size: 18px;
    color: #333;
}