/* =========================
   CSS RESET
========================= */

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

/* HTMl */

html {
    scroll-behavior: smooth;
}

/* BODY */

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
}

/* Images */

img,
picture {
    max-width: 100%;
    display: block;
}

/* Forms */

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

/* Links */

a {
    text-decoration: none;
    color: inherit;
}

/* Lists */
ul,
ol {
    list-style: none;
}

/* Button */

button {
    border: none;
    background: none;
    cursor: pointer;
}