13 lines
206 B
CSS
13 lines
206 B
CSS
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
box-sizing: border-box;
|
|
background-color: gray;
|
|
}
|
|
body {
|
|
display: flex;
|
|
height: 100vh;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|