25 lines
366 B
CSS
25 lines
366 B
CSS
{421e1e8b4a5b09845ea8f79bda2945b6b5f77abe true 366 style.css 0xc002bbbd50}
*{
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
body{
|
|
background: #000;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
}
|
|
h1{
|
|
position: relative;
|
|
color: #fff;
|
|
font-size: 100px;
|
|
text-align: center;
|
|
}
|
|
canvas{
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
} |