* {
  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;
  box-sizing: border-box;
}

:root {
  font-family: sans-serif;
  background-color: white;
  color: black;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  touch-action: pan-x pan-y;
  --accent: #7d26ff;
  --error: #ff435c;
  --correct: #56e858;
}

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;
  padding: 10px 30px;
  background: var(--accent);
  text-align: center;
  color: white;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 700;
}
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; }
input:not([type="checkbox"]),
textarea {
  all: unset;
  height: 30px;
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 10px;
}