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

body {
    background: #1a1a2e;
    overflow: hidden;
    font-family: 'Bungee', cursive;
    -webkit-user-select: none;
    user-select: none;
    touch-action: none;
}

#canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

#controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}