/*
=========================================================
  RESET — Qckr Web Client
  Modern CSS Reset (Josh Comeau) + normalize.css
=========================================================
*/

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

img, picture, svg, video, canvas {
  display: block;
  max-width: 100%;
}

button, input, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

button  { cursor: pointer; }
a       { color: inherit; text-decoration: none; }
ul, ol  { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  overflow-wrap: break-word;
}

p { text-wrap: pretty; overflow-wrap: break-word; }

textarea { overflow: auto; resize: none; }

::selection {
  background: rgba(125, 0, 255, 0.30);
  color: white;
}

:focus-visible {
  outline: 2px solid rgba(0, 217, 255, 0.8);
  outline-offset: 2px;
}