@font-face {
    font-family: "hp";
    src: url("fonts/hp.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #202020;
}

body {
    font-family: "hp", sans-serif;
  
}

/* Shared settings for every canvas */
canvas {
    position: fixed;
    display: block;

    
    image-rendering: auto;

    -webkit-tap-highlight-color: transparent;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Main game canvas */
#gameCanvas {
    z-index: 5;
}

/* Start-screen canvas */
#startCanvas {
       z-index: 0;
}

/* Rotate-device canvas. Shown when width is less than height */
#rotateDeviceCanvas {
    z-index: -10;

    background-color: #1a1b1d;
    background-image: url("graphics/splashscreen/rotatedevice.png");
    background-size: 50% auto;
    background-position: center;
    background-repeat: no-repeat;
}

/*Game Canvas  Background canvas */
#backgroundCanvas {
    z-index: 2;
}
/* Unused reserved layer - kept out of paint/composite until needed */
#canvas0 {
    z-index: 0;
    visibility: hidden;
}

/* Unused reserved layer - kept out of paint/composite until needed */
#canvas1 {
    z-index: 0;
    visibility: hidden;
}