html, body {
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;

    background-color: black;

    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */

    touch-action: none;
}

.container {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
}

.world3d {
    width: 100%;
    height: 100%;
    touch-action: none;
    /*aspect-ratio: 16 / 9;*/
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.minimap {
    width: 150px;
    height: 150px;
    border: 0px solid black;
    position: absolute;
    left: calc(100% - 160px);
    top: calc(100% - 160px);
    background-color: white;
    display: none;
}

canvas {
    border: 0px;
    outline: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0); /* mobile webkit */
    /*cursor: none;*/
}

div.settings {
    z-index: 10;
    background-color: #555555;
    position: absolute;
    left: 50%;
    top: 50%;
    padding: 50px;
    transform: translateX(-50%) translateY(-50%);
    font-family: monospace;
}

#size,
#start_btn {
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    font-family: monospace;
}

#start_btn {
    background-color: darkcyan;
}

#seed {
    width: 95%;
}

.clock {
    position: absolute;
    background-color: rgba(100,100,100,0.8);
    text-align: center;
    font-size: 20px;
    padding: 5px 10px;
    display: none;
    font-family: monospace;
}

.cursor {
    position: absolute;
    z-index: 9;
    width: 30%;
    aspect-ratio: 1 / 1;
    right: 0%;
    bottom: 0%;

    display: none;
}

.cursorU {
    left: 50%;
    top: 0%;
    transform: translateX(-50%) rotate(180deg);
}
.cursorD {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0%;

}
.cursorL {
    left: 0%;
    top: 50%;
    transform: translateY(-50%)rotate(90deg);
}
.cursorR {
    top: 50%;
    transform: translateY(-50%) rotate(270deg);
    right: 0%;
}

.cur {
    position: absolute;
    border-radius: 50%;
    width: 40%;
    height: 40%;
    background-color: rgba(200, 200, 200, 0.5);

    background-image: url("../imgs/arrow.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;

    background-position-y: 6px;

    pointer-events: none;
}

.cur:active {
    background-color: rgba(120, 120, 120, 0.5);
}

.audioSet {
    background-color: #337ab7;
    cursor: pointer;
}

.audioSetActive {
    background-color: #9b86ff;
}
