/* css/reset.css */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

ul, ol { list-style: none; }

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

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

table { border-collapse: collapse; }

svg { display: block; }
