.project_container {
    border: 1px solid rgb(199, 209, 253);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 0px;
    border-width: 2px;
    width: 75%;
    margin: auto;
    display: flex;
}

.project_title {
    font-size: 22px;
    text-align: center;
    color: black;
    background-color: rgb(199, 209, 253);
    margin-bottom: 0px;
    margin: auto;
    width: 75%;
}

.project_text {
    display: flex;
    flex: 0 0 70%;
}

.project_text li {
    font-size: 16px;
    margin-left: 10px;
    list-style-type: disc;
 }

 .project_image {
    display: flex;
    flex: 1;
    width: 100%;
    height: 30%;
    margin: auto;
}

/* Responsive: On mobile, switch to one column */
@media (max-width: 768px) {
    .project_container {
        flex-direction: column;
        align-items: center;
    }

    .project_text {
        flex: none;
        width: 90%; /* Make them take most of the width */
    }

    .project_image {
        width: 100%;
        height: auto;
        display: block;
    }
}