This commit is contained in:
2024-03-19 21:47:20 +02:00
parent 18d5d30197
commit 6e1390d83e
7 changed files with 142 additions and 1 deletions

20
style.css Normal file
View File

@@ -0,0 +1,20 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: black;
overflow: hidden;
}
canvas {
position: fixed;
top: 50vh;
left: 50vw;
transform: translate(-50%, -50%);
height: 100vh;
width: auto;
background: pink;
}