16 lines
236 B
CSS
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;
|
|
}
|