
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  font-feature-settings: normal;
  font-variation-settings: normal;
  scroll-behavior: smooth;
}
body {
  background-color: var(--color-bg-dark, #0E0E0E);
  color: var(--color-text-white, #FFFFFF);
  font-family: var(--font-regular);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
}
img, video {
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: inherit;
}
ol, ul, menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
