@font-face {
    font-family: DELTARUNE;
    src: url(deltarune.ttf);
}

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100vw;
    height: 100vh;
    scale: 1.2; /* compensate canvas offsetting */
    overflow: hidden; /* 🤓 actually we shouldn't use 100 VH cause some shit about how viewports work, but I hate any measurement unit in CSS present right now */
}

#fun {
    position: relative;
    z-index: 1;
    height: 100vh;
    width: 100vw;
    font-family: DELTARUNE;
}

body{
    background-color: #000000;
}

a {
    color: white;
}