* {
    padding: 0;
    margin: 0;
    border: 0;
}

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

:focus,
:active {
    /* outline: none; */
}

html,
body {
    min-width: 375px;
    height: 100%;
}

body {
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    line-height: 1;
    color: var(--color-primary);
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* Disable Blue Highlight when touch/press object with cursor:pointer */
}

input,
button,
textarea {
    font-family: var(--font-main);
    font-size: inherit;
}

button {
    color: inherit;
    cursor: pointer;
    background-color: inherit;
}

a {
    color: inherit;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:focus {
    /* outline: none; */
}

a:hover {
    text-decoration: none;
}

a:active {
    /* outline: none; */
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}