css how to center align a container on a screen code example
Example: css center elment screen
.center-screen {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
min-height: 100vh;
}