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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0a0a12;
    font-family: 'Press Start 2P', monospace;
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
    touch-action: none;
}

#footer-link {
    position: fixed;
    bottom: 6px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 100;
    pointer-events: auto;
}

#footer-link a {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: #4af;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.2s;
}

#footer-link a:hover {
    opacity: 1;
    text-shadow: 0 0 8px #4af;
}