body {
    background-color: #d63447;
}

.flex-container {
    flex-direction: row;
}

.start{
    justify-content: flex-start;
}

.end{
    justify-content: flex-end;
}

.center{
    justify-content: center;
}

.space-around{
    justify-content: space-around;
}

.space-between{
    justify-content: space-between;
}

.column-space-between{
    flex-direction: column;
    justify-content: space-between;
    height:500px;
}

