Initial Commit

This commit is contained in:
2025-03-31 17:01:30 +02:00
commit 05fe8d140d
11 changed files with 44613 additions and 0 deletions

Binary file not shown.

40
public/assets/style.css Normal file
View File

@@ -0,0 +1,40 @@
body {
margin: 0;
padding: 0;
background-color: black;
color: white;
}
canvas {
width: 100%;
height: 100%
}
@font-face {
font-family: "SecularOne";
src: url("SecularOne-Regular.ttf") format("truetype");
}
h1 {
position: absolute;
top: 25vh;
left: 50vw;
color: white;
transform: translate(-50%, -50%);
font-family: "SecularOne", sans-serif;
font-size: 3em;
}
.footer {
position: absolute;
bottom: 1rem;
left: 50%;
transform: translate(-50%, 0);
font-family: sans-serif;
}
.footer > a {
text-decoration: underline;
color: white;
}