To start, Flex Box is "Flexible Layout". This is done by utilizing various CSS commands which increase layout efficiency by making it easier to align and distribute space among items in a container, even when their size is unknown. We will start with the first three basic commands.
#part1 {
display: flex;
justify-content: space-between;
}
#part1 {
display: flex;
justify-content: center;
align-items: center;
}
#part1 {
display: flex;
align-items: flex-start;
justify-content: space-between
}
.joel1 {
align-self:flex-end;
}