/* Минимальное обнуление */

*,
*:after,
*:before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

ul li {
    list-style-type: none;
}

ol {
    margin-left: 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
optgroup,
select,
textarea {
    border: none;
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
    font: inherit;
    /* По дефолту, шрифтовые свойства, для этих элементов не наследуются */
    color: inherit;
    letter-spacing: inherit;
}

button,
input {
    overflow: visible;
}

*:focus {
    outline: none;
}