home ~ projects ~ socials

Centering Horizontally And Vertically With Flexbox

#container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
-- end of line --