html {
    box-sizing: border-box;
}

html * {
    box-sizing: inherit;
}

html, body {
    overscroll-behavior: contain;
}

body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    -webkit-user-drag: none;
}

a {
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

input {
    width: 100%;
    outline: none;
    -webkit-appearance: none;
}

select {
    outline: none;
}

label {
    -webkit-tap-highlight-color: transparent;
}

button {
    border: none;
    cursor: pointer;
}

button:disabled {
    cursor: default;
}

:focus-visible {
    outline: none;
}