* {
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  /* -webkit-tap-highlight-color: rgba(0, 0, 0, 0.2); */
  -webkit-tap-highlight-color: transparent;
}

:root {
  font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
  background-color: #202023;
  color: white;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  overflow: hidden;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  touch-action: pan-x pan-y;
}

body {
  display: flex;
  place-items: center;
  min-height: 100vh;
  min-width: 100vw;
}

::-webkit-scrollbar {display: none;}
a { text-decoration: none; }
button { cursor: pointer; border: none; outline: none }
button:hover { outline: none }
.flex { display: flex; }
.full { place-content: center; place-items: center }
.column { flex-direction: column; }
.vertical { place-items: center; }
.horizontal { place-content: center; }