/* CSS Reset Beginning */

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

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

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

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

body {
    min-height: 100vh;
    min-height: 100dvh;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
svg,
video,
canvas {
    display: block;
    max-inline-size: 100%;
    block-size: auto;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto;
    }
}

#root,
#__next {
    isolation: isolate;
}

/* CSS Reset End */
