/* =========================================
   RESET.CSS
========================================= */


/* =========================================
   UNIVERSAL RESET
========================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}



/* =========================================
   HTML & BODY
========================================= */

html {
    scroll-behavior: smooth;

    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;

    text-rendering: optimizeLegibility;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;
}



/* =========================================
   MEDIA ELEMENTS
========================================= */

img,
picture,
video,
canvas,
svg {
    display: block;

    max-width: 100%;
}



/* =========================================
   FORM ELEMENTS
========================================= */

input,
button,
textarea,
select {
    font: inherit;

    border: none;

    outline: none;

    background: none;
}

textarea {
    resize: none;
}



/* =========================================
   BUTTONS
========================================= */

button {
    cursor: pointer;

    color: inherit;
}



/* =========================================
   LINKS
========================================= */

a {
    text-decoration: none;

    color: inherit;
}



/* =========================================
   LISTS
========================================= */

ul,
ol {
    list-style: none;
}



/* =========================================
   TABLES
========================================= */

table {
    border-collapse: collapse;

    border-spacing: 0;
}



/* =========================================
   HEADINGS
========================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;

    overflow-wrap: break-word;
}



/* =========================================
   PARAGRAPHS
========================================= */

p {
    overflow-wrap: break-word;
}



/* =========================================
   ROOT TYPOGRAPHY
========================================= */

body,
input,
textarea,
button,
select {
    font-family: sans-serif;
}



/* =========================================
   REMOVE TAP HIGHLIGHT
========================================= */

* {
    -webkit-tap-highlight-color: transparent;
}



/* =========================================
   DISABLED STATES
========================================= */

button:disabled,
input:disabled {
    cursor: not-allowed;
}



/* =========================================
   HIDDEN ATTRIBUTE
========================================= */

[hidden] {
    display: none !important;
}



/* =========================================
   REDUCE MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;
    }

}