/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    line-height: 1.6; /* Adjusted line height for readability */
}

.content-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.text-frame {
    background-color: #ffffff;
    border: 1px solid #dcdcdc;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 28px; /* Increased default font size */
    line-height: 1.8; /* Adjusted line height for readability */
    text-align: justify;
}

/* Media query for screens 800px and larger */
@media screen and (min-width: 800px) {
    .text-frame {
        font-size: 16px; /* Further increased font size for larger screens */
        line-height: 1.6; /* Maintained line height */
    }
}
