:root {
    --std: 16px;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 1;
    color: inherit;
    text-decoration: none;
    text-transform: none;
}

*, html, body {
    -webkit-text-size-adjust: 100%;
       -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
            text-size-adjust: 100%;
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
}

::-moz-selection {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

::selection {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

html {
    font-size: 16px;
}

body {
    overflow: hidden;
    background-color: rgb(0, 0, 0);
}

#app {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}