.body {
    margin: 0%;
}
.flex {
    display: flex;
}

.flex-direction-column {
    flex-direction: column
}

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

.justify-content-center {
    justify-content: center
}

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

.flex-direction-between {
    justify-content: space-between
}

.align-items-center {
    align-items: center
}

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

.align-self-end {
    align-self: flex-end;
}

.font-white{
    color: #FFFFFF;
}

.font-#535353{
    color: #535353;
}

.font-666666{
    color: #666666;
}

.font-4E4E4E{
    color: #4E4E4E;
}