
/*=====================================================================================================================
    GLOBAL
=======================================================================================================================*/

* {
    box-sizing: border-box;
    outline: none;
}

/*=====================================================================================================================
    MAIN
=======================================================================================================================*/

div {
    margin: 10px;
    border: solid 1px #bbb;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*align-content: space-between;*/
    
    align-items: stretch;
    /*flex-wrap: wrap;*/
}

p {
    margin: 0;
    padding: 15px;
    /*flex: 1;*/ /*Réparti la place qu'li reste entre tous les blocs*/
    flex-basis: 100px;
}

p:first-child {
    background-color: red;
}

p:nth-of-type(2) {
    background-color: orange;
    /*flex: 2;*/
}

p:nth-of-type(3) {
    background-color: yellow;
    /*padding: 40px;*/
}

p:nth-of-type(4) {
    background-color: green;
    /*align-self: flex-start;*/
    /*order: -1;*/
    /*flex: 2;*/
}

p:nth-of-type(5) {
    background-color: blue;
}