/*Flexbox styling sheet*/

/*let's make sure that the dimensions of any box includes its border and padding, this gives us an easy way of sizing our elements*/
* {
    box-sizing: border-box;
    
}

.container5{
    display: flex;
    flex-wrap: wrap; 
    flex-direction: row-reverse;
    align-items: stretch;
    align-content: center;
    margin-left: 1.5%;
    border: 2px solid white;
}

.column{
    flex: 1;
    min-width: 400px;
    
}

img{
    width: 98%;
    border: 3px solid white;

}

