html,
body {
    touch-action: none;
}

body {
    background-color: black;
    margin: 0;
}

html,
body,
#game-canvas {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

#rotate {
    display: none;
    position: fixed;
    background-color: black;
    z-index: 999;
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

#rotate>svg {
    display: block;
    fill: white;
    width: 33%;
    height: 33%;
}

@font-face {
    font-family: 'DINRoundPro';
    src: url('../assets/fonts/DINRoundPro-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'DINRoundPro';
    src: url('../assets/fonts/DINRoundPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'DINRoundPro';
    src: url('../assets/fonts/DINRoundPro.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}