@tailwind base;
@tailwind components;
@tailwind utilities;
/* @import './components/app/app.css'; */
/* You can add global styles to this file, and also import other style files */
html {
    width: stretch;
    height: stretch;
}

body {
    margin: 0 auto;
    width: stretch;
    height: stretch;
    background-color: #1EBEBD;
    color: #E4178B;
    font-family: 'Mitr', sans-serif;
    font-size: 1.5em;
    font-weight: 200;
    touch-action: manipulation;
}

/* div:focus {outline:0;} */

/* input, select, button{
    font-family: inherit;
    font-size: inherit;
    //text-rendering: auto;
    //appearance: none;
} */

button {
    all: unset;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}