@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');

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

body {
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    font-family: 'Special Elite', cursive;
    cursor: crosshair;
}

#game-container {
    position: relative;
    line-height: 0;
}

canvas {
    display: block;
    cursor: crosshair !important;
}
