/* reset.css */

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

  -ms-overflow-style: none;

  scrollbar-width: none;
}

*::-webkit-scrollbar {
  display: none;
}

body {
  height: 100%;
  font-size: 100%;
  line-height: 1;

  color: #000000;
  font-family: sans-serif;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
  text-rendering: optimizeLegibility;
}

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

button, input, textarea, select {
  font: inherit;

  border: none;
  background-color: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}