#analysis {
    margin: 20px auto;
    width: 100%;
    background-color: #fff;
    display: grid;
    grid-template-columns: 33.33% 33.33% 33.33%;
    grid-row: auto auto;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

.step {
    max-height: 70vh;
    /* border: 1px solid red; */
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    font-family: sans-serif;
}

.step canvas {
    border: 1px solid red;
}

#container {
    width: calc(100% - 30px);
    margin: 0 auto;
}

#images {
    display: none;
}