*{
    box-sizing: border-box;
}
body{
    margin: 0;
    background-color: lightgray;
    line-height: 1,4;
    text-align:justify;
    font-size: large;
}

.container{
    max-width: 960px;
    margin: 0 auto;
    outline: 5px dotted rgb(3, 154, 255);
}

.row{
    display: flex;

}

.flex-item{
    height: 650px;
    flex-basis: 320px;
}
.one{
    background-color: khaki;
    flex-grow: 1;
    flex-shrink: 0;


}
.two{
    background-color: chartreuse;
    flex-grow: 7;
    flex-shrink: 0;


}
.three{
    background-color: gold;
    flex-grow: 10;
    flex-shrink: 0;
}


.article{
    display: flex;

}

.article p, .article h3{
    text-align: justify;
    padding: 10px;

}

.article img{
    width: 50px;
    position: absolute;
    top: -12px;
    right: -10px;
    opacity: 0.7;
}
article{
    position: relative;
}
