16 lines
221 B
CSS
16 lines
221 B
CSS
|
body,
|
||
|
html {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
height: 100%;
|
||
|
background-color: #000000;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
max-width: 100%;
|
||
|
max-height: 100%;
|
||
|
image-rendering: pixelated;
|
||
|
}
|