/* ==========================================================================
   BASE
   Native HTML element selectors, descendant/child selectors and resets.
   No classes here.
   ========================================================================== */

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

html, body, h1, h2, h3, p, figure {
  margin: 0;
}

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

body {
  min-height: 100vh;
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

a {
  text-decoration: none;
  display: block;
}
