*{
    margin: 0;
    padding: 0;
    vertical-align: baseline;

  }
  *,

  ::before,
  ::after{
    /* Compatibiladad box-sizing para diferentes navegadores */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

}

html{
  scroll-behavior: smooth;
}

body{
  min-height: 100vh;

  /* si hay movimientos de pagina entre anclas el scroll que se haga sea suavizado  */
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul, ol {
  list-style: none;
}

a{
  display: block;
  text-decoration: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
p a{
  display: inline;
}

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

form, input, select, textarea, button, label{
  font-family: inherit;
  font-size: inherit;
  display: block;
  color: inherit;
}



