* {
    padding: 0;
    margin: 0;
    outline: none;
}
body, html {
    -webkit-touch-callout: none;
    -webkit-text-size-adjust: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background-color: black;
    color: white;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
#game {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#canvas {
    margin: 0 auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@font-face {
    font-family: 'Fred Fredburger';
    src: url('./assets/fonts/FREDFREDBURGERHEADLINE-BLACK.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
