11 lines
196 B
CSS
11 lines
196 B
CSS
body {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
font-family: sans-serif;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
background-color: #f0f2f5;
|
|
}
|