.projet {
    display: flex;
    align-items: stretch;
    text-align: center;
    justify-content: center;
    height: auto;
    background-color: var(--color-taupe);
    font-size: 1.0rem;
}

.projet-section-info {
    flex: 1;
    box-sizing: border-box;
    min-height: 500px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    text-align: left;
}

.projet-section-info h1 {
    text-align: center;
    padding: 15px 0;
    font-size: 2.2rem;
}

.projet-section {
    margin: 25px 0;
    line-height: 1.6rem;
}

.projet-section-image {
    flex: 1;
    box-sizing: border-box;
    min-height: 500px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projet-image {
    width: 100%;
    height: auto;
}

.projet-section ul {
    margin-left: 20px;
    margin-top: 20px;
    list-style-type: circle;
}

@media (max-width: 1440px) {
    .projet {
        flex-direction: column;
    }

    .projet-section-info {
        padding: 20px;
    }
}