/* <> CSS RESET */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
}
input,
button,
textarea {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  background: unset;
  border: none;
}
img {
  display: block;
  max-width: 100%;
  max-height: auto;
}
:focus:not(:focus-visible) {
  outline: none;
}
a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
  color: unset;
}
html {
  scroll-behavior: smooth;
}
body {
  width: 100%;
  min-height: 100vh;
}
ul {
  list-style: none;
}
/* </> */
