/*---------------------------------------------------------------------------------------------------------------
    AUTOR          : DIEGO BUSTOS PEÑA
    FECHA CREACIÓN : 09-06-2026
    DESCRIPCIÓN    : CSS DE "ETIQUETAS"
----------------------------------------------------------------------------------------------------------------*/

/* RESET GENERAL */
*,
*::before,
*::after {
    box-sizing : border-box;
}

html {
    scroll-behavior : smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
    margin  : 0;
    padding : 0;
}

ul,
ol {
    list-style : none;
}

a {
    text-decoration : none;
}

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

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

button {
    cursor : pointer;
}