*{
    margin:0;
    padding: 0; 
   vertical-align: baseline;
    
}
*,
*::before,
*::after{

    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing:border-box ;
}

html{
    scroll-behavior: smooth;
}

body{
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed; /*optimiza la carga de fuentes mas rapida */
    line-height: 1.5;
}

ul,ol{
    list-style: none;
}

a{
    display: block;
    display: block;
    text-decoration: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;

}

p a{
    display: inline;
}

img, video, iframe, picture, figure{
    display:block;
    max-width: 100%;
    

}

form, textarea, select, input, button, label{

    display: block;
    font-family: inherit; /* heredado*/
    font-size: inherit;
    color: inherit;
}