*{
    box-sizing: border-box;
}
body{
    margin: 0;
    background-color: lemonchiffon;
    line-height: 1.4;
}
.container{
    max-width: 960px;
    margin: 0 auto;
    outline: 3px dotted palevioletred;
}
.row{
    display: flex;
}
.flex-item{
    flex-basis: 200px;
    height: 150px;
}
.one{
    background-color: lightgoldenrodyellow;
    outline: 3px dotted palevioletred;
    flex-shrink: 30;
}
.two{
    background-color: lightgoldenrodyellow;
    outline: 3px dotted palevioletred;
    flex-shrink: 5;
}
.three{
    background-color: lightgoldenrodyellow;
    outline: 3px dotted palevioletred;
    flex-grow: 5;
}
