.titleContainer h2 {
    display: flex;
    text-align: center;
    flex-direction: column;
    font-size: 2em;
    font-weight: 300;
    line-height: 1.5em;
    margin: 0 0 70px 0;
    letter-spacing: .06em;
    word-spacing: 6px;
    text-transform: uppercase;
    font-family: var(--FontFamilyFuturaPt);
}

.myPictureContainer {
    display: grid;
    place-items: center;
}

.mePic {
    width: 70%;
}

.container-for-the-last-project {
    z-index: -11;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 17px 0;
}

.aboutTheProject {
    display: grid;
    margin: 30px 0 0;
    justify-content: space-between;
    grid-template-columns: 46% 2% 46%;
}

.aboutTheProject div.border div {
    height: 100%;
    border-left: 0.1px solid #DDD;
}

.aboutTheProject p.arabicTitle {
    line-height: 2;
    font-size: 17px;
    font-size: 15px;
    text-align: end;
    font-weight: 400;
    font-family: var(--arabicFont);
}

.aboutTheProject p.englishTitle {
    line-height: 2;
    font-size: 17px;
    font-size: 13.747px;
    letter-spacing: 1px;
    text-transform: capitalize;
    font-family: Arial, Helvetica, sans-serif;
}

.cvContainer {
    margin: 150px 0;
    font-family: var(--FontFamilyFuturaPt);
}

.cvContainer .cvWord {
    font-size: 25px;
    text-align: center;
    letter-spacing: 3px;
}

.downloadTheCvLink {
    padding: 40px 0;
    text-align: center;
}

.downloadTheCvLink a {
    font-size: 20px;
    letter-spacing: 1px;
    transition: color 200ms;
    font-family: Arial, Helvetica, sans-serif;
}

.downloadTheCvLink a span {
    font-size: 30px;
    font-family: var(--FontFamilyFuturaPt);
}

.downloadTheCvLink a:hover {
    color: var(--gray);
}

.cvPictures {
    margin: 30px 0 0;
    display: grid;
    justify-content: space-between;
    grid-template-columns: 48% 48%;
}

.cvPictures .picturecontainer img {
    width: 100%;
}

@media all and (max-width: 1000px) {
    .mePic {
        width: 100%;
    }

    .aboutTheProject {
        margin: 30px 0 0;
        gap: 20px 0;
        display: flex;
        flex-direction: column;
    }

    .aboutTheProject p {
        font-size: 20px;
    }

    .aboutTheProject div.border div {
        display: none;
    }

    .aboutTheProject p.arabicTitle {
        font-size: 18px;
    }

    .aboutTheProject p.englishTitle {
        font-size: 17px;
    }

    .cvPictures {
        display: flex;
        flex-direction: column;
    }
}