/* reset.base.css */

/* 0) box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 1) remove default margins  */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* 2) lists */
ul,
ol {
    margin: 0;
    padding: 0;
}

/* 3) media */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* 4) form */
button,
input,
select,
textarea {
    font: inherit;
    margin: 0;
}
button {
    cursor: pointer;
}

/* 5) table */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 6) anchor */
a {
    color: inherit;
    text-decoration: none;
}
