.bloc-milieu{
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 3;
    background:  linear-gradient(to right ,  rgb(199, 230, 235),rgb(76, 172, 236));
    grid-template-columns: 1fr;

    font-size: 1.4rem;

    display: flex;
    flex-direction: column;
    z-index: 1;
}

#grid {
    display: flex;
    flex-direction: row;
    column-gap: 2rem;
    margin: 2rem;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
}

#text {
    margin-right: 2rem;
    width: 20vw;
}

#integration {
    width: 70%;    
    margin: auto auto;
}

/* Style the textarea to look like a code editor */
#editorcss, #editorhtml {
    width: clamp(531px, calc(531px + 17vw), 750px);
    height: 6rem;
    margin-right: 3rem;
}

@media screen and (max-width: 918px) {
    #text {
        width: 100%;
    }
    #grid {
        flex-direction: column;
        margin: 2rem;
    }
    #integration {
        width: 100%;
    }
    #editorcss, #editorhtml {
        width: 100%;
        margin-right:5rem !important; 
    }
}