/* hvac001.css */

body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f0f0;
    padding: 20px; /* Provides some padding from the left and top edges */
    box-sizing: border-box;
    margin: 0; /* Remove default browser body margin */
    /* Removed display: flex and justify-content: center to allow left alignment */
}
a:link, a:visited {color: #0000EE; 
    /* Uses the same color as the parent element */
}

.text-container {
    /* This is the core of the solution for responsive text wrapping */
    max-width: 60ch; /* Limit to approximately 60 characters wide */
    width: 100%;     /* Allow it to shrink and fill available space on smaller screens */

    background-color: #fff0f0;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
    color: #333;
    text-align: left; /* Ensure text aligns left within its container */
    /* No margin: auto needed here, as it will naturally align left due to body's default block flow */
}

/*peter mostovoy 2025 */
