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

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

html {
  scroll-behavior: smooth;
}

/* :root {
  color-scheme: dark light;
} */

body {
  min-height: 100vh;
}


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

a {
  text-decoration: none;
}

@media only screen and (max-width: 800px) {
  * {
    background-attachment: scroll !important;
  }
}