@charset 'utf-8';

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

::marker {
  font-family: var(--ff-font-awesome-free, var(--system-fonts));
}

:root,
body {
  scrollbar-gutter: stable;
  overflow-x: clip;
  overflow-y: visible;
}

body {
  max-width: 100%;
}

ol,
ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
}

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

button {
  color: var(--btn-clr, red);
  border: 1px solid var(--btn-clr, red);
  border-radius: 10%;
  background-color: transparent;
}
