* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: #0a0a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    font-family: 'Bungee', Impact, sans-serif;
}

#game-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    max-width: 900px;
    max-height: 700px;
}

#canvas {
    display: block;
    width: 100%;
    height: 100%;
    cursor: crosshair;
}

footer {
    position: fixed;
    bottom: 4px;
    text-align: center;
    z-index: 100;
}

footer a {
    color: #444;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 11px;
}

footer a:hover {
    color: #888;
}