22 lines
328 B
CSS
22 lines
328 B
CSS
body {
|
|
margin: 0;
|
|
background: black;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: white;
|
|
height: 100vh;
|
|
cursor: none;
|
|
}
|
|
|
|
pre {
|
|
white-space: pre;
|
|
font-family: monospace;
|
|
font-size: 14px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
} |