File size: 314 Bytes
e90ef08 3cda448 e90ef08 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
* {
box-sizing: border-box;
padding: 0;
margin: 0;
font-family: sans-serif;
}
html,
body {
height: 100%;
color: #000;
background: #fff;
}
body {
padding: 32px;
}
body,
#container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
} |