:root {
    --color-light-theme: #fff;
    --color-dark-theme: #000;
    --color-accent: #647260;
    --color-accent-alpha: rgba(102,138,144,0.65);
    --color-danger: #C06365;
    --border-rad: 10px;
    --anim-transform-generic: background-color 0.3s ease, transform 0.2s ease;
    --vh: 1vh;
}
/*html, body {
    touch-action: manipulation;
}
  canvas {
    touch-action: none;
  }
*/
body {
    font-family: "Noto Sans";
    color: var(--color-light-theme);
    user-select: none;
}
.wrapper {
    background-color: #e5e5e5;
    width: 100vw;
    height: calc(100 * var(--vh));
    position: relative;
    display: flex;
}
.Mobile-app {
    position: relative;
    margin: auto;
    background-color: white;
    width: 100%;
    height: 100%;
}
#gui {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: auto;
    z-index: 1;
    pointer-events: none;
    overflow-x: hidden;
}
