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

body, html {
    background-color: #0a0a1a;
    /* Prevent pull-to-refresh and overscroll on mobile */
    overscroll-behavior: none;
    overflow: hidden;
    /* Disable pinch zoom on mobile */
    touch-action: none;
}

#canvas1{
    position: absolute;
    left: 0px;
    top: 0px;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: auto 2560 / 1440;
    overflow: hidden;
    /*  Disable scrollbars */
    display: block;
    /* No floating content on sides */

    /* Mobile touch controls - prevent default behaviors */
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

#player{
    display: none;
}

#world{
    display: none;
}

#rotating-canvas{
    display: none;
}

#temp-canvas{
    display: none;;
}