* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family-base);
}

html {
  font-size: var(--font-size-root);
  scroll-behavior: smooth;
}

body {
  background-color: #0a0a0a;
  overflow-x: hidden;
}

::selection {
  background-color: var(--color-brand);
  color: var(--color-white);
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

button,
input {
  border: 0;
  font-family: var(--font-family-base);
}

button:focus,
input:focus {
  border: 0;
}
