/* css reset */
* {
    box-sizing: border-box;
}

html, body, div, p, ul, li, dl, dt, dd, em, i, span, a, img, input, h1, h2, h3, h4, h5 {
    margin: 0;
    padding: 0
}

a, img, input {
    border: none;
}

button,
input,
select,
textarea {
    font-size: 100%;
    outline: none
}

button {
    border: none;
}

body {
    font: 14px/1.75 -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

a {
    text-decoration: none;
}

ul, li {
    list-style: none
}

::root {
    --intro-fade: 500ms;
}

body {
    background-color: #000;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

a:hover, button:hover {
    filter: brightness(1.1);
}
