/* Minimal global styles */
html,
body {
    height: 100%;
    margin: 0;
    background: #111;
}

canvas {
    display: block;
}

/* Mobile-only hidden input that can be focused to open the keyboard */
#mobile-text-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    border: none;
    padding: 0;
    z-index: 9999;
    caret-color: transparent;
    background: transparent;
}

@media (min-width: 769px) {
    #mobile-text-input {
        display: none;
    }
}