.container{
    width: full;
    height: 100%;
    padding: 16px;
    display: flex;
    gap: 8px;
    border-radius: 16px;
}


.col{
    display: flex;
    flex-direction: column;
    gap: 16px 16px;
    flex-wrap: wrap;
    flex-grow: 1; 
}
.col.taille2{
    flex: 2;
}

.col.taille1{
    flex: 1;
}

.ligne{
    flex: 1;
    border: 2px solid black;
    border-radius: 16px;
    overflow: auto;
    box-shadow: 8px 8px 16px  rgba(0, 0, 0, 0.79),
              4px 4px 8px rgba(238, 237, 237, 0.071);
}


