/* ==========================================
                RESET CSS
   ========================================== */

/* Box Model */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* Documento */

html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
}

/* Body */

body{
    min-height:100vh;
    line-height:1.5;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

/* Imágenes */

img,
picture,
svg,
video,
canvas{
    display:block;
    max-width:100%;
}

/* Formularios */

input,
button,
textarea,
select{
    font:inherit;
    color:inherit;
    background:none;
    border:none;
    outline:none;
}

/* Botones */

button{
    cursor:pointer;
}

/* Enlaces */

a{
    color:inherit;
    text-decoration:none;
}

/* Listas */

ul,
ol{
    list-style:none;
}

/* Tablas */

table{
    border-collapse:collapse;
    border-spacing:0;
}

/* Títulos */

h1,
h2,
h3,
h4,
h5,
h6{
    font-weight:inherit;
}

/* Párrafos */

p{
    overflow-wrap:break-word;
}

/* Código */

pre,
code{
    font-family:Consolas, "Courier New", monospace;
}

/* Selection */

::selection{
    background:#7C3AED;
    color:white;
}

/* Scrollbar Firefox */

*{
    scrollbar-width:thin;
    scrollbar-color:#7C3AED #ffffff;
}