/*test*/
/*
section {
    margin: 20px;
    min-height: 50px;
    border: rgb(14, 13, 13) 2px solid;
}
div {
    margin: 20px;
    min-height: 50px;
    border: red 2px solid;
}
form {
    margin: 20px;
    min-height: 50px;
    border: rgb(211, 214, 20) 2px solid;
}
p {
    margin: 20px;
    min-height: 50px;
    border: rgb(38, 35, 221) 2px solid;
}
h1 {
    margin: 20px;
    min-height: 50px;
    border: rgb(12, 153, 19) 2px solid;
}
.container {
    margin: 20px;
    min-height: 50px;
    border: rgb(57, 15, 112) 2px solid;
*/
/*prod*/
div, section, aside, form {
    margin: 15px;
}
img {
    max-width: 150px;
    max-height: 150px;
}
.container {
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.flex {
    display: flex;
}

.row {
    display: flex;
    flex-direction: row;
}

.column {
    display: flex;
    flex-direction: column;
}

.center {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.centerText {
    text-align: center;
}

.around {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stretch {
    display: flex;
    flex-wrap: wrap;
    align-content: stretch;
}

.left {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-right: auto;
}

.leftFlex {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-left: auto;
}

.rightFlex {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.full {
    display: flex;
    align-content: stretch;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-evenly;
}

.align {
    display: flex;
    flex-wrap: wrap;
    /*justify-content: flex-start;*/
    align-items: center;
}

.alignstart {
    align-items: flex-start;
}

.minW20 {
    min-width: 20%;
}

.minW30 {
    min-width: 33%;
}

.minW40 {
    min-width: 40%;
}

.minW50 {
    min-width: 45%;
}

.minW90 {
    min-width: 90%;
}

.minW100 {
    min-width: 100%;
}

.maxW20 {
    max-width: 20%;
}

.W50 {
    width: 45%;
}

.flex1 {
    flex:1;
}

.nowrap {
    flex-wrap: nowrap !important;
}
/******************************* media ****************************************/
@media (min-width: 600px) {
    .accueil {
        display: flex;
        flex-direction: row;
        align-content: center;
        flex-wrap: nowrap;
        align-items: stretch;
    }

    section, aside {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .maxW30XL {
        max-width: 33%;
    }

    .minW20XL {
        min-width: 20%;
    }

    .columnXL {
        display: flex;
        flex-direction: column;
    }
    
    .centerXL {
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
    }

    .rowXL {
        display: flex;
        flex-direction: row;
    }

    .fullXL {
        display: flex;
        align-content: stretch;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: space-evenly;
    }
}