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

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

html {
    color-scheme: dark light;
    hanging-punctuation: first last;
    height:100%;
}

body {
    /* min-height:100%; */
    min-height:100svh;
}

h1, h2, h3, h4, h5, h6 {
    text-wrap:balance;
}

p {text-wrap:pretty;}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
  }

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior:smooth;
        scroll-padding-top:1rem;
    }
    :has(:target) {
        scroll-behavior:smooth;
        scroll-padding-top:1rem;
    }
}