.project-header {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.back-arrow {
    width: 50px;
    height: 50px;
    margin-left: 3rem;
    cursor: pointer;
}

.project-title {
    text-align: center;
    font-size: var(--texttitle-font-size);
    flex: 1;
}

.page-content {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
}

.article {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 200px;
    margin-top: 6rem;
}

.project-article-left { flex-direction: row; }
.project-article-right { flex-direction: row-reverse; }

.link {
    font-weight: bold;
    color: var(--text-strong-color);
}


.image-project {
    width: 650px;
    height: 100%;
    padding: 5px;
    border: 5px var(--text-color) dashed;
    cursor: pointer;
}

.article-content p { 
    line-height: 1.4;
    margin-bottom: 20px;
    text-align: justify;
    text-indent: 3rem;
}

.languages-card {
    display: flex;
    flex-direction: column;
    background-color: var(--dark-blue);
    padding: 25px 35px 25px 35px;
    border: 5px var(--text-color) double;
    min-width: 500px;
    min-height: 230px;
    max-height: fit-content;
}

.languages-title {
    text-align: center;
    margin-bottom: 2rem;
}

.languages-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.languages-container img {
    height: 90px;
    width: 90px;
    flex-basis: calc(30% - 10px);
}

.conclusion-container {
    margin-top: 8rem;
    margin-bottom: 5rem;
    padding: 35px 0 35px 0;
    width: 100%;
    background-color: var(--dark-blue);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border: 5px var(--text-color) double;
}

.conclusion-content {
    text-align: justify;
    margin-top: 20px;
    line-height: 1.4;
    width: 90%;
}

.project-conclusion {
    font-size: var(--textsubtitle-font-size);
}