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

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

body {
  overflow: hidden;          /* DESK-05: no scrollbar, no scroll */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
}

ul, ol {
  list-style: none;
}
