body {
    background-color: black;
    font-family: 'Consolas';
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90%;
}

.contenu {
    display: flex;
    width: 80%;
    max-width: 1200px;
    padding: 20px;
    border-radius: 5px;
    height: 80vh;
}

.editeur, .vision {
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
    height: 100%;
}

.editeur>h2, .vision>h2{
    text-align: center;
}

textarea {
    color: white;
    background-color: black;
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px;
    border: 1px solid;
    border-radius: 2%;
    font-size: 140%;
    resize: none;
    box-sizing: border-box;
    overflow-y: auto;
}

#rendu {
    color: white;
    width: 100%;
    height: 100%;
    background-color: black;
    overflow-y: auto; 
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 2%; 
    box-sizing: border-box;
}

#toggle{
    width: 10%;
    height: 5%;
    color: white;
    background-color: grey;
    border-radius: 10px;
    line-height: 120%;
    position: absolute;
    left: 45%;
    top: 5%
}
