/* ==========================================
   RESET
========================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


html,
body {
    margin: 0;
    padding: 0;
}


body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
}


img,
picture,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
}


img {
    height: auto;
}


button,
input,
textarea,
select {
    font: inherit;
}

button,
input,
textarea,
select {
    color: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}


ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}


h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote {
    margin: 0;
}


p {
    line-height: 1.7;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 3px;
}


::selection {
    background: #111;
    color: #fff;
}