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

body {
    background: #000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    font-family: 'Share Tech Mono', monospace;
}

canvas {
    display: block;
    cursor: none;
}

#footer {
    position: fixed;
    bottom: 8px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

#footer a {
    color: #334;
    text-decoration: none;
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

#footer a:hover {
    color: #0ff;
}