19 lines
240 B
CSS
19 lines
240 B
CSS
body {
|
|
font-size: 8vw;
|
|
background: black;
|
|
color: white;
|
|
}
|
|
|
|
.flash {
|
|
background: red;
|
|
}
|
|
|
|
#view {
|
|
position: fixed;
|
|
inset: 0;
|
|
width: fit-content;
|
|
height: fit-content;
|
|
margin: auto;
|
|
text-align: center;
|
|
}
|