inside elements flexible code example
Example 1: css flex center
display: flex;
align-items: center;
justify-content: center;
Example 2: make the first item at the very top of the screen
.fixedElement {
position:fixed;
top:0;
width:100%;
z-index:100;
}