/* Modern CSS Reset */

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

* {
  margin: 0;
  padding: 0;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

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

button {
  appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  color: inherit;
}

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

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

fieldset {
  border: none;
}

hr {
  border: none;
}

@media (prefers-color-scheme: dark) {
  /* intentionally empty for now */
}
