/* Reset and base normalization */
* {
  box-sizing: border-box;
}

html,
body,
div,
span,
ap,
button,
section,
article,
nav,
main,
header,
footer,
aside,
figure,
figcaption,
textarea,
select,
input {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background: var(--color-bg);
  color: var(--color-text);
}

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

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

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

ul,
ol {
  list-style: none;
}

button {
  background: none;
  cursor: pointer;
}
