Playground could use shorthand properties like:
Example:
.container {
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
align-content: center;
}
could be shortened to:
.container {
display: flex;
flex-flow: column wrap;
place-content: center;
}