.project-container {
    display: flex;
    justify-content: space-around;
}

.project {
    border: 1px solid white;
    border-radius: 10px;
    background:rgba(255,255,255,0.1);
    padding: 30px;
    width: 65%;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.project-text-wrapper {
    display: flex;
    flex-direction: column;
}

.project-text {
    display: flex;
    align-items: center;
}

.project-logo img {
    width: 50px;
    margin-right: 10px;
    margin-bottom: 5px;
}

.project-description {
    width: 50%;
}

.project-gif img {
    height: 300px;
}

.project-left, .project-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.project-right .project-text-wrapper .project-text {
    justify-content: right;
}

.project-right .project-text-wrapper .project-description {
    text-align: end;
    padding-left: 50%;
    width: 100%;
}

.project-right .project-gif {
    display: flex;
    justify-content: right;
}