2024-11-19 23:54:25 +01:00

16 lines
236 B
CSS

* {
margin: 0;
padding: 0;
}
body,
html {
width: 100vw;
height: 100vh;
overflow: hidden;
background-color: red;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}