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

html, body {
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-family: sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ul, ol {
    list-style: none;
}

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

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

table {
    border-collapse: collapse;
    width: 100%;
}

input, button, textarea, select {
    font: inherit;
    border: none;
    background: none;
    outline: none;
}

button, input, textarea, select {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}

