#aboutMe_text {
    display: flex;
    flex-direction: column;
    padding: 30px;
    text-align: left;
    max-width: 1000px;   
}
#aboutMe_artist_para {
    font-size: 15px;
}

/* #all_projects_container {
    padding: 30px;
}

#project_main {
    display: flex;
    flex: row;
    flex-wrap: wrap;
}
#project_description {
    font-size: 14px;
} */

#all_projects_container {
    padding: 30px;
}

#project_main {
    display: flex;
    flex-direction: row; /* Corrected this */
    align-items: flex-start; /* Align top edges */
    gap: 50px; /* Adds space between description and video */
    flex-wrap: wrap; /* Keeps it responsive on smaller screens */
}

#project_description {
    font-size: 14px;
    max-width: 750px; /* Prevents text from stretching too wide */
    line-height: 1.2;
}
