*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0px;
    padding: 0;
}

html, body {
    width: 100%;
    max-width: 100%;
// overflow-x: hidden;
}

body {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

img, video {
    max-width: 100%;
    height: auto;
}

input, textarea, select, button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    border: none;
    outline: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button {
    cursor: pointer;
}