.wrapper {
    margin: auto;
    max-width: 600px;
}

h1 {
    font-size: 32px;
    font-weight: bold;
}

h4 {
    font-size: 18px;
    font-weight: bold;
}

.parent1 {
    background-color: #ccc;
    display: flex;
    flex-direction: row;
}

.parent2 {
    background-color: #ccc;
    display: flex;
    flex-direction: row-reverse;
}

.parent3 {
    background-color: #ccc;
    display: flex;
    flex-direction: column;
}

.parent4 {
    background-color: #ccc;
    display: flex;
    flex-direction: column-reverse;
}

.child1 {
    background-color: red;
    width: 100px;
    padding: 10px;
    color: #fff;
    box-sizing: border-box;
    font-size: 42px
}

.child2 {
    background-color: green;
    width: 100px;
    padding: 10px;
    color: #fff;
    box-sizing: border-box;
    font-size: 42px
}

.child3 {
    background-color: blue;
    width: 100px;
    padding: 10px;
    color: #fff;
    box-sizing: border-box;
    font-size: 42px
}

.child4 {
    background-color: orange;
    width: 100px;
    padding: 10px;
    color: #fff;
    box-sizing: border-box;
    font-size: 42px
}