17 lines
189 B
CSS
17 lines
189 B
CSS
html {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
*,
|
|
*:after,
|
|
*::before {
|
|
box-sizing: inherit;
|
|
}
|
|
|
|
.main {
|
|
display: flex;
|
|
flex-flow: column wrap;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|