#controlPanel {
    width: 1300px;
    height: 200px;
    background-color: white;
    outline: 12px solid black;
    padding: 24px;
    box-sizing: border-box;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

#controlPanel textarea {
    height: 100px;
    resize: none;
}