@keyframes appear {
    from {
        color: lightgray
    }

    to {
        color: black
    }
}

#main-01 {
    max-width: 50svw;
    background-color: #f9f9f9;
    color: var(--clr-main-text);
    /* White background for a clean look */
    margin: 30px auto;
    /* Add margin to top and bottom. Center the content with more spacing */
    padding: 30px;
    border-radius: 12px;
    /* Softer rounded corners */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    /* Enhanced shadow for depth */
    font-family: 'Arial', sans-serif;

    /* Use a modern sans-serif font */
    & h1 {
        font-size: 2rem;
        margin-bottom: 20px;
        border-bottom: 3px solid #1f51ff;
        padding-bottom: 10px;
        color: black;
        animation-name: appear;
        animation-duration: 4s;
    }

    & p {
        font-size: 1.1rem;
        line-height: 1.8;
        /* Increased line-height for readability */
        margin-bottom: 25px;
        /* color: #555; */
        /* Medium gray for text */
    }

    & ul,
    ol {
        font-size: 1.1rem;
        line-height: 1.3;
        /* Increased line-height for readability */
        margin-left: 25px;
        /* Indentation for lists */
        margin-bottom: 25px;
    }

    & li {
        font-size: 1.1rem;
        /* line-height: 1.5; */
        /* Increased line-height for readability */
        margin-bottom: 10px;
        /* color: #555; */
        /* Darker gray for list items */
    }

}

@container container-responsive-name (max-width: 1100px) {
    #main-01 {
        max-width: 70svw;
    }
}

@container container-responsive-name (max-width: 1100px) {
    #main-01 {
        max-width: 90svw;
    }
}