@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: #000;
}

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;
}


/* Canvas behind the game */
#myCanvasBack {
    background-color: transparent;
    z-index: -10;
}

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

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

/* Rotate-device canvas */
#myCanvas2 {
    z-index: -10;

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

#myCanvas3 {
    z-index: 0;
}

#myCanvas4 {
    z-index: 0;
}

/* Background canvas */
#myCanvas5 {
    z-index: 2;
}

#myCanvas6 {
    z-index: 3;
}

#myCanvas7 {
    z-index: 4;
}