40 lines
661 B
CSS
40 lines
661 B
CSS
|
|
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;
|
|
} |