* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    font-size: 16px;
}
body,
html {
    scroll-behavior: smooth;
    overflow: auto;
    width: 100%;
}
body {
    min-height: 100vh;
}
img,
svg {
    max-width: 100%;
    height: auto;
}
@media (prefers-reduced-motion: reduce){
    html:focus-within {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
        transition: none;
    }
}