*,
*::before,
*::after {
    box-sizing: border-box
}

* {
    margin: 0
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem
}

body {
    min-height: 100vh;
    text-rendering: optimizeLegibility
}

img,
svg {
    display: block;
    max-width: 100%
}

button,
input,
textarea {
    font: inherit
}

button {
    border: 0
}

a {
    color: inherit;
    text-decoration: none
}

ul,
ol {
    list-style: none;
    padding: 0
}

h1,
h2,
h3,
p {
    overflow-wrap: break-word
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }
}