KapteynUniverse• 1,120
@KapteynUniverse
Posted
Hey, nice job.
Using flex or grid for centering would be better.
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
Grid i guess like this
body {
display: grid;
place-items: center
min-height: 100vh;
}
1