.wrapper{
    max-width: 600px;
    margin: auto;
}
h1{
    font-size: 32px;
    font-weight: bold;
}
h4{
    font-size: 18px;
    font-weight: bold;
}
.parent-element-1, .parent-element-2, .parent-element-3, .parent-element-4{
    background-color: #ccc;
    display: flex;
}
li{
    background-color: red;
    width: 100px;
    padding: 10px;
    color: #fff;
    box-sizing: border-box;
    font-size: 42px;
}
.parent-element-1{
    flex-direction: row;
}
.parent-element-2{
    flex-direction: row-reverse;
}
.parent-element-3{
    flex-direction: column;
}
.parent-element-4{
    flex-direction: column-reverse;
}
.blue{background-color: blue;}
.green{background-color: green;}
.orange{background-color: orange;}