/* ==========================================================
   CYBERFRACTAL
   01-reset.css
   Arquitectura v3.0
========================================================== */


/* ==========================================================
   BOX MODEL
========================================================== */

*,
*::before,
*::after{

    box-sizing:border-box;

}


/* ==========================================================
   DOCUMENTO
========================================================== */

html{

    margin:0;

    padding:0;

    width:100%;

    min-height:100%;

    scroll-behavior:smooth;

}


body{

    margin:0;

    padding:0;

    width:100%;

    min-height:100vh;

}


/* ==========================================================
   MULTIMEDIA
========================================================== */

img,
picture,
video,
canvas,
svg{

    display:block;

    max-width:100%;

    height:auto;

}


/* ==========================================================
   FORMULARIOS
========================================================== */

button,
input,
textarea,
select{

    font:inherit;

}


/* ==========================================================
   ENLACES
========================================================== */

a{

    color:inherit;

    text-decoration:none;

}


/* ==========================================================
   LISTAS
========================================================== */

ul,
ol{

    margin:0;

    padding:0;

    list-style:none;

}


/* ==========================================================
   TÍTULOS
========================================================== */

h1,
h2,
h3,
h4,
h5,
h6{

    margin:0;

    font-weight:normal;

}


/* ==========================================================
   PÁRRAFOS
========================================================== */

p{

    margin:0;

}


/* ==========================================================
   TABLAS
========================================================== */

table{

    border-collapse:collapse;

    border-spacing:0;

}