/* ==============================
   RESET CSS
============================== */

/* box model */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* html, body */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* semantic tags */
article, aside, details, figcaption, figure,
footer, header, main, nav, section {
    display: block;
}

/* text */
h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
}

p { line-height: inherit; }

/* links */
a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
}

/* lists */
ul, ol {
    list-style: none;
}

/* media */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
    -webkit-user-drag: none;
}

/* forms */
button, input, select, textarea {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

button { cursor: pointer; }
textarea { resize: vertical; }

/* table */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* hidden */
[hidden] {
    display: none !important;
}

/* focus */
:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}
