/*  RESET
//////////////////////////////////////////////////////////////////////////////*/

@layer reset {
    * {
        margin: 0;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        background-repeat: no-repeat;
    }

    ::before,
    ::after {
        text-decoration: inherit;
        vertical-align: inherit;
    }
    html,
    body {
        scroll-behavior: smooth;
    }
    body {
        min-height: 100vh;
        scroll-behavior: smooth;
        text-rendering: optimizeSpeed;
        -ms-text-size-adjust: 100%;
        -webkit-text-size-adjust: 100%;
        word-break: normal;
        -moz-tab-size: 4;
        tab-size: 4;
    }

    a,
    area,
    button,
    input,
    label,
    select,
    summary,
    textarea,
    [tabindex]:not([tabindex="-1"]) {
        touch-action: manipulation;
    }
}
