themagician.cc/styles/common.css

18 lines
215 B
CSS

*, *::before, *::after {
margin: 0;
box-sizing: border-box;
}
body {
width: 100vw;
height: 100vh;
}
.center-grid {
width: 100%;
height: 100%;
display: grid;
place-items: center;
}