@layer base;

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

body {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
    margin: 0;
    padding: 0;
}

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

button,
input {
    color: currentColor;
    font-family: inherit;
    font-size: inherit;
}

@layer base {
    button {
        all: unset;
        cursor: pointer;
    }
}

ul,
ol {
    list-style: none;
}