:root {
    --default-app-width: 375px;
    --default-app-height: 667px;
    --default-bg-color: #374261;
}

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

body {
    position: fixed;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dadada;
}

input, textarea {
    outline: none;
}

#root {
    display: flex;
    width: var(--default-app-width);
    height: var(--default-app-height);
    background-color: var(--default-bg-color);
    box-shadow: 0 0 15px 1px rgba(0,0,0,.45);
}

#dialog {
    position: absolute;
}

@media (max-width: 480px) {
    ::-webkit-scrollbar {
        display: none
    }

    body {
        background-color: var(--default-bg-color);
    }

    #root, html {
        overflow: auto;
        min-height: auto
    }

    #root {
        height: 100%;
        width: 100%;
        max-height: none;
        position: static;
        -webkit-transform: none;
        transform: none;
        box-shadow: none;
    }
}
