* {
padding: 0;
margin: 0;
    box-sizing: border-box;
}
html{
    -webkit-tap-highlight-color: transparent;
}
body{
/* line-height: 1.5; */
font-family: 'hind', sans-serif;
}
/* Quita las flechas para subir y bajar el valor en el input */
input[type=number]::-webkit-outer-spin-button, 
input[type=number]::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    appearance: textfield;
    -moz-appearance:textfield;
}
a{
    color: inherit;
    text-decoration: none;
    background-color: transparent;
}
a:hover{
color: inherit;
    text-decoration: none;
}
li {
list-style:none
}
button{
    border: none;
    background: none;
    cursor: pointer;
}