@charset "utf-8";

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

html {
    font-family: sans-serif;
    line-height: 1.15;
/*    -ms-text-size-adjust: 100%;*/
    -webkit-text-size-adjust: 100%;
}

html:focus-within {
    scroll-behavior: smooth
}

body {
    max-width: 100vw;
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    font-size: 100%;    
    line-height: 1.5;
    background-color: white;   
    color: black;
    font-weight: normal;
    font-variant: normal;
    font-style: normal;   
    font-stretch: normal;   
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote {
    margin: 0;
    padding: 0;
}

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

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

@media(prefers-reduced-motion:reduce) {
    html:focus-within {
        scroll-behavior: auto
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important
    }
}
