* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

main {
    background: gray;
}

section {
    background: purple;
    display: flex;
}

article  {
    background: orange;
    height: 100px;
    flex-grow: 1;
    align-content: center;
    text-align: center;
}
section, article {
    margin: 1rem;
    border-radius: 1rem;
    border: solid 3px black;
    flex-wrap: wrap;
}

.s1 { flex-grow: 1; }
.s2 { flex-grow: 2; }
.s3 { flex-grow: 3; }
