wie man Divs in einer Reihe ausrichtet
div {
display: flex;
align-items: center; /* aligns all the items vertically centered */
justify-content: center; /* aligns all the items horizontally centered */
}
dead.dev