#myprojects {
    max-width: 65%;
    margin: 0px auto;
    padding: 60px 20px 20px 20px;
    border-radius: 10px;
}

/* MY PROJECTS */
#title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
}

#projects {
    display: flex;
    flex-direction: column;
}
.row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
/* PROJECT NAME AND TITLE */
.row-title {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;
    width: 100%;
    color: #BFBFBF; /* Medium gray title color */
}

.row-title span {
    color: #ff4b4b;
}

.row-description {
    font-size: 23px;
    margin-bottom: 10px;
    /* font-style: italic; */
    color: #D5D5D5; /* Light gray description color */
    text-align: left;
    width: 100%;
    font-family: "Poppins", sans-serif;
}
.project {
    width: calc(33.33% - 10px); /* 33.33% width with some margin between */
    margin: 0 5px; /* Adjust margin as needed */
    text-align: center;
    margin-bottom: 20px;
}
.project img {
    width: 100%;
    height: auto;
    max-width: 100%; /* Ensure the image doesn't exceed its container */
    max-height: 100%;
    object-fit: cover; /* Maintain aspect ratio */
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.project p {
    color: #777; /* Light gray description color */
    display: none; /* Hide the description */
    font-family: "Times New Roman", Times, serif;
}

@media (max-width: 768px) {

    #myprojects {
        max-width: 95%;
    }

    #title {
        font-size: 30px;
    }

    .row-title {
        font-size: 23px;
    }

    .row-description {
        font-size: 20px;
    }
}