.project {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
}

.project > img {
    height: 25rem;

    border-radius: 1.5rem;
}

.project > div {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 1rem;

    text-align: justify;

    line-height: 2rem;
}

.project > div > p:nth-child(1) {
    line-height: normal;
}

.project > div:nth-child(1) > p:nth-child(1),
.project > div:nth-child(1) > p:nth-child(3) {
    text-align: right;
}

.project > div:nth-child(2) > p:nth-child(1),
.project > div:nth-child(2) > p:nth-child(3) {
    text-align: left;
}

.project > div > p {
    margin: 0;
}

.project > div > p:nth-child(1) {
    font-weight: bold;
    font-size: 3rem;
}

.project > div > p:nth-child(3) {
    font-size: 2rem;
}