/* =========================
   BASE CSS
   - resets + global defaults
   ========================= */

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

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

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

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100svh; 
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.5;
  background-color: transparent;
}