Files
global-game-jam-2021/client/static/assets/style.css

17 lines
219 B
CSS

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #000000;
}
main {
display: flex;
justify-content: center;
align-items: center;
width: 100vw;
height: 100vh;
}