/* reset.css */
/* Minimal reset for kiosk-style web apps */

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

html,
body {
  width: 100%;
  height: 100%;
}

body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  cursor: pointer;
}

:focus {
  outline: none;
}

ul,
ol {
  list-style: none;
}
