@font-face {
    font-family: 'Fixedsys';
    src: url('fonts/Fixedsys.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Fixedsys', monospace;

    background-color: black;
    background-image: url('assets/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
}

#skullCanvas {
    z-index: 1;
}

#bloodCanvas {
    z-index: 3;
    pointer-events: none;
}

footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 4;
}

.footer-text {
    color: #8a0d04;
    font-size: 18px;
    letter-spacing: 4px;
    text-decoration: none !important;  /* ensures no underline */
   /* cursor: default;                    /* normal arrow cursor */
}