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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  color-scheme: light;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.55;
  color: var(--color-text-body);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: none;
  touch-action: manipulation;
}

input,
textarea {
  border: none;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  -webkit-appearance: none;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[role='button']:focus-visible {
  outline: 2px solid rgba(14, 165, 233, 0.45);
  outline-offset: 2px;
}

ul,
ol {
  list-style: none;
}

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